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