2019-10-10 15:37:41 -05:00
|
|
|
// edition:2018
|
|
|
|
|
2019-09-01 06:54:57 -05:00
|
|
|
#[bench] //~ ERROR use of unstable library feature 'test'
|
2019-09-07 14:23:53 -05:00
|
|
|
//~| WARN this was previously accepted
|
2019-09-01 06:54:57 -05:00
|
|
|
fn bench() {}
|
|
|
|
|
2019-10-10 15:37:41 -05:00
|
|
|
use bench as _; //~ ERROR use of unstable library feature 'test'
|
|
|
|
//~| WARN this was previously accepted
|
2019-09-01 06:54:57 -05:00
|
|
|
fn main() {}
|