blob: 2bb133e8bfd42667fec4f3b3f695b395dbb4ef39 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// compile-flags: --test
#![feature(custom_test_frameworks)]
#![deny(unnameable_test_items)]
fn foo() {
#[test_case]
//~^ ERROR cannot test inner items [unnameable_test_items]
fn test2() {}
}
|