rust/tests/ui/panics/location-detail-panic-no-column.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
158 B
Rust
Raw Normal View History

//@ run-fail
//@ check-run-results
//@ compile-flags: -Zlocation-detail=line,file
//@ exec-env:RUST_BACKTRACE=0
2021-10-15 10:58:28 -05:00
fn main() {
panic!("column-redacted");
}