aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/self-missing-method.rs
blob: 01c4ea14de32a10481f855c734559e53ffa25100 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// xfail-boot
// error-pattern:expecting ., found (
fn main() {

  obj foo() {
      fn m() {
          self();
      }
  }
  
  auto a = foo;
  a.m();
}