DEBSOURCES
Skip Quicknav
sources / rust-proc-macro-error2 / 2.0.1-1 / tests / ui / misuse.rs
12345678910
use proc_macro_error2::abort; struct Foo; #[allow(unused)] fn foo() { abort!(Foo, "BOOM"); } fn main() {}