mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
272 B
Rust
9 lines
272 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() {}
|