2019-06-20 11:52:31 +03:00
|
|
|
// The non-crate level cases are in issue-43106-gating-of-builtin-attrs.rs.
|
2017-07-11 14:30:10 +02:00
|
|
|
// See issue-12997-1.rs and issue-12997-2.rs to see how `#[bench]` is
|
|
|
|
// handled in "weird places" when `--test` is passed.
|
|
|
|
|
2018-09-10 01:54:51 +03:00
|
|
|
#![feature(custom_inner_attributes)]
|
|
|
|
|
2017-07-11 14:30:10 +02:00
|
|
|
#![bench = "4100"]
|
2019-06-20 11:52:31 +03:00
|
|
|
//~^ ERROR cannot determine resolution for the attribute macro `bench`
|
2021-10-09 13:13:15 +01:00
|
|
|
//~^^ ERROR `bench` attribute cannot be used at crate level
|
2019-06-20 11:52:31 +03:00
|
|
|
fn main() {}
|