summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/export-fully-qualified.rs
blob: 4e73a2c548884a28ee81df0e0c9e936d6b93ea15 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 {
    pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared crate or module `foo`

    fn baz() { }
}

fn main() { }