aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/direct-obj-fn-call.rs
blob: e13db876ae52c92c0170aaa80720a2d228df13c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// error-pattern: mismatched types

obj x() {
  fn hello() {
    log "hello";
  }
}

fn main() {
  x.hello();
}