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

9 lines
122 B
Rust

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