/src/test/compile-fail/export-fully-qualified.rs
http://github.com/jruderman/rust · Rust · 16 lines · 6 code · 6 blank · 4 comment · 0 complexity · d36ee997d94828077fa0585a88eb14d4 MD5 · raw file
- // 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() { foo::baz(); }
- fn baz() { }
- }
- fn main() { }