summary refs log tree commit diff
path: root/src/test/run-fail/run-unexported-tests.rs
blob: c0512a4e213402d13e9648aaced981bf0519b8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// error-pattern:runned an unexported test
// compile-flags:--test

use std;

mod m {
    export exported;

    fn exported() { }

    #[test]
    fn unexported() { fail "runned an unexported test"; }
}