Files
runrs/external/rust-script/tests/data/script-features.rs
2022-08-06 01:14:04 +08:00

17 lines
293 B
Rust

/*!
```cargo
[features]
dont-panic = []
```
*/
#[cfg(feature="dont-panic")]
fn main() {
println!("--output--");
println!("Keep calm and borrow check.");
}
#[cfg(not(feature="dont-panic"))]
fn main() {
panic!("Do I really exist from an external, non-subjective point of view?");
}