rust/src/test/run-pass/simple-obj.rs
2011-07-27 15:54:33 +02:00

9 lines
No EOL
117 B
Rust

// -*- rust -*-
obj x() {
fn hello() { log "hello, object world"; }
}
fn main() { let mx = x(); mx.hello(); }