about summary refs log tree commit diff
path: root/tests/ui/test-attrs/run-unexported-tests.rs
blob: fc73eb519d21fb7852bb11b8d59defb11fe88320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ run-fail
//@ compile-flags:--test
//@ check-stdout

mod m {
    pub fn exported() {}

    #[test]
    fn unexported() {
        panic!("ran an unexported test");
    }
}