rust/tests/ui/test-attrs/run-unexported-tests.rs

13 lines
174 B
Rust
Raw Normal View History

//@ run-fail
//@ compile-flags:--test
//@ check-stdout
mod m {
2016-05-27 02:39:36 +00:00
pub fn exported() {}
#[test]
2016-05-27 02:39:36 +00:00
fn unexported() {
2018-08-19 13:30:23 +00:00
panic!("ran an unexported test");
2016-05-27 02:39:36 +00:00
}
}