test: fix check-fast breakage.
This commit is contained in:
parent
349e772bc5
commit
61210e01f9
1 changed files with 2 additions and 2 deletions
|
|
@ -10,10 +10,10 @@
|
|||
|
||||
mod foo {
|
||||
mod bar {
|
||||
pub fn y() { ::foo::x(); }
|
||||
pub fn y() { super::super::foo::x(); }
|
||||
}
|
||||
|
||||
pub fn x() { debug!("x"); }
|
||||
}
|
||||
|
||||
fn main() { foo::bar::y(); }
|
||||
fn main() { self::foo::bar::y(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue