2020-04-16 15:50:32 +09:00
|
|
|
// run-fail
|
2012-01-05 18:16:42 -08:00
|
|
|
// compile-flags:--test
|
2014-02-12 10:25:09 -08:00
|
|
|
// check-stdout
|
2012-01-05 18:16:42 -08:00
|
|
|
|
|
|
|
mod m {
|
2016-05-27 08:09:36 +05:30
|
|
|
pub fn exported() {}
|
2012-01-05 18:16:42 -08:00
|
|
|
|
|
|
|
#[test]
|
2016-05-27 08:09:36 +05:30
|
|
|
fn unexported() {
|
2018-08-19 15:30:23 +02:00
|
|
|
panic!("ran an unexported test");
|
2016-05-27 08:09:36 +05:30
|
|
|
}
|
2012-01-05 18:16:42 -08:00
|
|
|
}
|