rust/src/test/compile-fail/export-import.rs

16 lines
178 B
Rust
Raw Normal View History

// error-pattern: import
2012-09-05 14:32:05 -05:00
use m::unexported;
mod m {
#[legacy_exports];
2011-07-27 07:19:39 -05:00
export exported;
2011-07-27 07:19:39 -05:00
fn exported() { }
2011-07-27 07:19:39 -05:00
fn unexported() { }
}
fn main() { unexported(); }