rust/src/test/compile-fail/export-import.rs
2012-09-05 12:32:05 -07:00

15 lines
155 B
Rust

// error-pattern: import
use m::unexported;
mod m {
export exported;
fn exported() { }
fn unexported() { }
}
fn main() { unexported(); }