Skip to content

Commit 61210e0

Browse files
committed
test: fix check-fast breakage.
1 parent 349e772 commit 61210e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/run-pass/export-non-interference2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
mod foo {
1212
mod bar {
13-
pub fn y() { ::foo::x(); }
13+
pub fn y() { super::super::foo::x(); }
1414
}
1515

1616
pub fn x() { debug!("x"); }
1717
}
1818

19-
fn main() { foo::bar::y(); }
19+
fn main() { self::foo::bar::y(); }

0 commit comments

Comments
 (0)