2011-05-01 15:29:52 -05:00
|
|
|
// error-pattern: unresolved name
|
|
|
|
|
|
|
|
// 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 {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2011-05-01 15:29:52 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
export bar;
|
2011-05-01 15:29:52 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn bar() { foo::baz(); }
|
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() { }
|