aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/inner-module.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/inner-module.rs')
-rw-r--r--src/test/run-pass/inner-module.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass/inner-module.rs b/src/test/run-pass/inner-module.rs
index f5066b6e..03f32bc4 100644
--- a/src/test/run-pass/inner-module.rs
+++ b/src/test/run-pass/inner-module.rs
@@ -7,11 +7,11 @@ mod inner {
}
}
fn hello() {
- inner2.hello();
+ inner2::hello();
}
}
fn main() {
- inner.hello();
- inner.inner2.hello();
+ inner::hello();
+ inner::inner2::hello();
}