blob: 0be3b81ebb8ff32162031b29a4e41cf6d6659930 [file] [log] [blame]
//@ edition:2015
// 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 unresolved module or unlinked crate `foo`
fn baz() { }
}
fn main() { }