2011-05-01 15:29:52 -05: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 07:27:14 -05:00
|
|
|
pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared crate or module `foo`
|
2011-05-01 15:29:52 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn baz() { }
|
2011-05-01 15:29:52 -05:00
|
|
|
}
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { }
|