1
Fork 0

Update tests

This commit is contained in:
Jeffrey Seyfried 2016-04-09 01:27:36 +00:00
parent 2944fab398
commit 178c396326

View file

@ -10,10 +10,10 @@
mod foo {
use self::{self};
//~^ ERROR unresolved import `self`. There is no `self` in `???`
//~^ ERROR unresolved import `self`. There is no `self` in the crate root
use super::{self};
//~^ ERROR unresolved import `super`. There is no `super` in `???`
//~^ ERROR unresolved import `super`. There is no `super` in the crate root
}
fn main() {}