518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
17 lines
296 B
Rust
17 lines
296 B
Rust
// 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() { }
|