summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-30018-panic.rs
blob: cba3055a22111631bcf59fa1f1cec66d4b73aa55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// run-pass
// Regression test for Issue #30018. This is very similar to the
// original reported test, except that the panic is wrapped in a
// spawned thread to isolate the expected error result from the
// SIGTRAP injected by the drop-flag consistency checking.

// needs-unwind
// ignore-emscripten no threads support

struct Foo;

impl Drop for Foo {
    fn drop(&mut self) {}
}

fn foo() -> Foo {
    panic!();
}

fn main() {
    use std::thread;
    let handle = thread::spawn(|| {
        let _ = &[foo()];
    });
    let _ = handle.join();
}