2019-10-10 23:37:41 +03:00
|
|
|
//@ edition:2018
|
|
|
|
|
2019-09-01 14:54:57 +03: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() {}
|
|
|
|
|
2019-10-10 23:37:41 +03:00
|
|
|
use bench as _; //~ ERROR use of unstable library feature 'test'
|
|
|
|
//~| WARN this was previously accepted
|
2019-09-01 14:54:57 +03:00
|
|
|
fn main() {}
|