blob: 99cb558908cb6aa43a8e46b8216d0b2a9e100325 [file] [log] [blame]
// 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 type or module `foo`
fn baz() { }
}
fn main() { }