2022-02-07 23:40:17 +00:00
|
|
|
//@ run-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: tokyo.rs
|
2022-02-07 23:40:17 +00:00
|
|
|
//@ compile-flags:--extern tokyo
|
|
|
|
|
//@ edition:2021
|
2025-09-26 13:59:06 +02:00
|
|
|
//@ ignore-backends: gcc
|
2022-02-07 23:40:17 +00:00
|
|
|
|
|
|
|
|
use tokyo::main;
|
|
|
|
|
|
|
|
|
|
#[main]
|
|
|
|
|
fn main() {
|
|
|
|
|
panic!("the #[main] macro should replace this with non-panicking code")
|
|
|
|
|
}
|