2019-10-10 23:37:41 +03:00
|
|
|
//@ edition:2018
|
|
|
|
|
2024-11-02 16:10:24 -07:00
|
|
|
#[bench] //~ ERROR use of unstable library feature `test`
|
2019-09-07 22:23:53 +03:00
|
|
|
//~| WARN this was previously accepted
|
2019-09-01 14:54:57 +03:00
|
|
|
fn bench() {}
|
|
|
|
|
2024-11-02 16:10:24 -07:00
|
|
|
use bench as _; //~ ERROR use of unstable library feature `test`
|
2019-10-10 23:37:41 +03:00
|
|
|
//~| WARN this was previously accepted
|
2019-09-01 14:54:57 +03:00
|
|
|
fn main() {}
|