about summary refs log tree commit diff
path: root/src/test/run-pass/simple-obj.rs
blob: 6cb4caafe1677f3e49aa482780e32e83a03eb918 (plain)
1
2
3
4
5
6
7
8
9
// -*- rust -*-
obj x() {
    fn hello() { log "hello, object world"; }
}

fn main() { let mx = x(); mx.hello(); }