14 lines
203 B
Rust
14 lines
203 B
Rust
// 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"; }
|
|
}
|