blob: db0570d64f26a4a85883ae983c350b8179bc5685 [file] [log] [blame] [edit]
//@ 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 cannot find module or crate `foo`
fn baz() { }
}
fn main() { }