aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/export-fully-qualified.rs
blob: 005f17f26ee9ccb56ca5d365b1d994c3d15606da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2
// error-pattern: unresolved name

// In this test baz isn't resolved when called as foo.baz even though
// it's called from inside foo. This is somewhat surprising and may
// want to change eventually.

mod foo {

  export bar;

  fn bar() {
    foo.baz();
  }

  fn baz() {
  }
}

fn main() {
}