Small first step in expr_path. Call find_final_def just to detect

unresolved names. find_final_def is going to be extended to return the
final expr.
This commit is contained in:
Rafael Ávila de Espíndola 2011-01-25 17:54:38 -05:00
parent 18947f83cc
commit 9e2324ad1e
3 changed files with 48 additions and 24 deletions

View file

@ -0,0 +1,8 @@
// error-pattern: unresolved name: a
mod m1 {
}
fn main(vec[str] args) {
log m1.a;
}