rust/tests/ui/issues/issue-64430.rs

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

15 lines
189 B
Rust
Raw Normal View History

2019-09-13 19:13:51 +00:00
// compile-flags:-C panic=abort
#![no_std]
pub struct Foo;
fn main() {
Foo.bar()
//~^ ERROR E0599
}
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop{}
2019-09-13 19:23:58 +00:00
}