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

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

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