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

15 lines
178 B
Rust

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