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 {
|
|
|
|
|
|
|
|
export bar;
|
|
|
|
|
|
|
|
fn bar() {
|
2011-05-12 10:24:54 -05:00
|
|
|
foo::baz();
|
2011-05-01 15:29:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn baz() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|