2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
//@ aux-build:tokyo.rs
|
|
|
|
|
//@ compile-flags:--extern tokyo
|
|
|
|
|
//@ edition:2021
|
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")
|
|
|
|
|
}
|