blob: d419cc6fa4553dfbf2c09f5646f3c1c8444a60d0 [file] [log] [blame]
// compile-flags: --test -D unnameable_test_items
#[test]
fn foo() {
#[test] //~ ERROR cannot test inner items [unnameable_test_items]
fn bar() {}
bar();
}
mod x {
#[test]
fn foo() {
#[test] //~ ERROR cannot test inner items [unnameable_test_items]
fn bar() {}
bar();
}
}
fn main() {}