diff options
| author | Rafael Ávila de Espíndola <[email protected]> | 2011-01-27 16:39:31 -0500 |
|---|---|---|
| committer | Rafael Ávila de Espíndola <[email protected]> | 2011-01-27 16:39:31 -0500 |
| commit | c170e7edfdfe156f11374d5e3c265b613351dc99 (patch) | |
| tree | 732a37f12a5784a051e021a410bcd5690a6657e4 /src/test/run-pass | |
| parent | Handle paths correctly. This lets us handle one more test :-) (diff) | |
| download | rust-c170e7edfdfe156f11374d5e3c265b613351dc99.tar.xz rust-c170e7edfdfe156f11374d5e3c265b613351dc99.zip | |
Resolve type paths.
Diffstat (limited to 'src/test/run-pass')
| -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) { } |