rust/src/test/run-pass/simple-obj.rs

13 lines
125 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// -*- rust -*-
obj x() {
fn hello() {
log "hello, object world";
}
}
fn main() {
auto mx = x();
mx.hello();
}