diff options
Diffstat (limited to 'src/test/run-pass/alt-path.rs')
| -rw-r--r-- | src/test/run-pass/alt-path.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/alt-path.rs b/src/test/run-pass/alt-path.rs index ad55713b..205500e1 100644 --- a/src/test/run-pass/alt-path.rs +++ b/src/test/run-pass/alt-path.rs @@ -4,9 +4,9 @@ mod m1 { foo2; } } -fn bar(m1.foo x) { +fn bar(m1::foo x) { alt(x) { - case (m1.foo1) { + case (m1::foo1) { } } } |