rust/src/test/compile-fail/export-fully-qualified.rs

18 lines
319 B
Rust
Raw Normal View History

// 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 {
#[legacy_exports];
2011-07-27 07:19:39 -05:00
export bar;
2011-07-27 07:19:39 -05:00
fn bar() { foo::baz(); }
2011-07-27 07:19:39 -05:00
fn baz() { }
}
fn main() { }