about summary refs log tree commit diff
path: root/tests/ui/test-attrs/custom-test-frameworks/issue-107454.rs
blob: 8c20d464139e3d289b6c1c7c040554ce01b85d5d (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() {}
}