2018-03-13 13:22:43 -05:00
|
|
|
// error-pattern: `main` function not found
|
2017-07-11 07:30:10 -05:00
|
|
|
|
|
|
|
// At time of authorship, a crate-level #![bench] with no `--test`
|
|
|
|
// will cause compilation to error unconditionally with "main function
|
|
|
|
// not found" (despite having one), similar to #[bench].
|
|
|
|
//
|
|
|
|
// (The non-crate level cases are in
|
|
|
|
// issue-43106-gating-of-builtin-attrs.rs.)
|
|
|
|
|
|
|
|
// 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-09 17:54:51 -05:00
|
|
|
#![feature(custom_inner_attributes)]
|
|
|
|
|
2017-07-11 07:30:10 -05:00
|
|
|
#![bench = "4100"]
|
|
|
|
|
|
|
|
fn main() { }
|