12 lines
108 B
Rust
12 lines
108 B
Rust
|
|
// error-pattern: is not a mod
|
|
|
|
obj x() {
|
|
fn hello() {
|
|
log "hello";
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
x.hello();
|
|
} |