2024-02-16 20:02:50 +00:00
|
|
|
//@ run-fail
|
|
|
|
|
//@ compile-flags:--test
|
|
|
|
|
//@ 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
|
|
|
}
|