mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-19 03:54:40 +00:00
21 lines
381 B
Rust
21 lines
381 B
Rust
|
//@ aux-build:builtin-attrs.rs
|
||
|
//@ compile-flags:--test
|
||
|
|
||
|
#![feature(decl_macro, test)]
|
||
|
|
||
|
extern crate test;
|
||
|
extern crate builtin_attrs;
|
||
|
use builtin_attrs::{test, bench};
|
||
|
|
||
|
#[test] // OK, shadowed
|
||
|
fn test() {}
|
||
|
|
||
|
#[bench] // OK, shadowed
|
||
|
fn bench(b: &mut test::Bencher) {}
|
||
|
|
||
|
fn not_main() {
|
||
|
Test;
|
||
|
Bench;
|
||
|
NonExistent; //~ ERROR cannot find value `NonExistent` in this scope
|
||
|
}
|