15 lines
155 B
Rust
15 lines
155 B
Rust
// error-pattern: import
|
|
|
|
use m::unexported;
|
|
|
|
mod m {
|
|
export exported;
|
|
|
|
fn exported() { }
|
|
|
|
fn unexported() { }
|
|
}
|
|
|
|
|
|
fn main() { unexported(); }
|