2023-06-22 11:19:05 +08:00
|
|
|
//@ edition:2015
|
|
|
|
|
2011-05-01 16:29:52 -04:00
|
|
|
// 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 {
|
2020-08-27 13:27:14 +01:00
|
|
|
pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared crate or module `foo`
|
2011-05-01 16:29:52 -04:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn baz() { }
|
2011-05-01 16:29:52 -04:00
|
|
|
}
|
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
fn main() { }
|