]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panics/issue-47429-short-backtraces.rs
Rollup merge of #91312 - terrarier2111:anon-const-ice, r=jackh726
[rust.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 // NOTE(eddyb) output differs between symbol mangling schemes
16 // revisions: legacy v0
17 // [legacy] compile-flags: -Zsymbol-mangling-version=legacy
18 //     [v0] compile-flags: -Zsymbol-mangling-version=v0
19
20 fn main() {
21     panic!()
22 }