Improve dummy bindings for unresolved imports

This commit is contained in:
Jeffrey Seyfried 2016-02-19 00:42:30 +00:00
parent 1b5d2f21d6
commit 08b9097197
2 changed files with 3 additions and 1 deletions

View file

@ -19,6 +19,6 @@ mod zed {
}
fn main() {
zed::foo(); // Check that this does not panic. Ideally, it would be a privacy error.
zed::foo(); //~ ERROR unresolved name
bar();
}