android13/external/rust/crates/proc-macro-error/tests/ui/misuse.rs

12 lines
143 B
Rust
Raw Normal View History

2024-06-22 08:45:49 -04:00
extern crate proc_macro_error;
use proc_macro_error::abort;
struct Foo;
#[allow(unused)]
fn foo() {
abort!(Foo, "BOOM");
}
fn main() {}