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

8 lines
112 B
Rust
Raw Normal View History

// error-pattern: attempted field access
2010-06-23 21:03:09 -07:00
obj x() {
2011-07-27 14:19:39 +02:00
fn hello() { log "hello"; }
2010-06-23 21:03:09 -07:00
}
fn main() { x.hello(); }