rust/tests/ui/attributes/main-removed-2/main.rs
2024-11-27 07:18:25 -08:00

11 lines
205 B
Rust

//@ run-pass
//@ proc-macro: tokyo.rs
//@ compile-flags:--extern tokyo
//@ edition:2021
use tokyo::main;
#[main]
fn main() {
panic!("the #[main] macro should replace this with non-panicking code")
}