Files
Notes/notes-service/vendor/proc-macro-error3/tests/ui/misuse.rs
T
2026-08-01 16:11:49 +03:00

11 lines
113 B
Rust

use proc_macro_error3::abort;
struct Foo;
#[allow(unused)]
fn foo() {
abort!(Foo, "BOOM");
}
fn main() {}