]> git.proxmox.com Git - rustc.git/blob - src/test/ui/panics/issue-47429-short-backtraces.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / ui / panics / issue-47429-short-backtraces.rs
1 // Regression test for #47429: short backtraces were not terminating correctly
2
3 // compile-flags: -O
4 // run-fail
5 // check-run-results
6 // exec-env:RUST_BACKTRACE=1
7
8 // ignore-msvc see #62897 and `backtrace-debuginfo.rs` test
9 // ignore-android FIXME #17520
10 // ignore-openbsd no support for libbacktrace without filename
11 // ignore-wasm no panic or subprocess support
12 // ignore-emscripten no panic or subprocess support
13 // ignore-sgx no subprocess support
14
15 fn main() {
16 panic!()
17 }