rust/src/test/run-pass/simple-obj.rs
2010-06-23 21:03:09 -07:00

13 lines
125 B
Rust

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