rust/tests/ui/feature-gates/bench.rs
2023-01-11 09:32:08 +00:00

10 lines
271 B
Rust

// edition:2018
#[bench] //~ ERROR use of unstable library feature 'test'
//~| WARN this was previously accepted
fn bench() {}
use bench as _; //~ ERROR use of unstable library feature 'test'
//~| WARN this was previously accepted
fn main() {}