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