rust/src/test/compile-fail/direct-obj-fn-call.rs

15 lines
156 B
Rust
Raw Normal View History

// xfail-stage0
// xfail-stage1
// xfail-stage2
2010-06-23 21:03:09 -07:00
// error-pattern: is not a mod
2010-06-23 21:03:09 -07:00
obj x() {
fn hello() {
log "hello";
}
}
fn main() {
x.hello();
}