diff options
| author | Graydon Hoare <[email protected]> | 2011-02-09 13:19:20 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-02-09 13:19:20 -0800 |
| commit | b7dfbc9db079a6c55d9e716d295f87597752b668 (patch) | |
| tree | 4f3d0e1b1e63c3b8db0571f5151d8c833bfc481a /src/test/run-pass | |
| parent | Re-indent a bit of elf. (diff) | |
| download | rust-b7dfbc9db079a6c55d9e716d295f87597752b668.tar.xz rust-b7dfbc9db079a6c55d9e716d295f87597752b668.zip | |
Fix bug in test and un-XFAIL 4 tests now passing on rustc.
Diffstat (limited to 'src/test/run-pass')
| -rw-r--r-- | src/test/run-pass/generic-type-synonym.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/generic-type-synonym.rs b/src/test/run-pass/generic-type-synonym.rs index 4ddc8946..c3d2a9d5 100644 --- a/src/test/run-pass/generic-type-synonym.rs +++ b/src/test/run-pass/generic-type-synonym.rs @@ -1,4 +1,4 @@ type foo[T] = tup(T); type bar[T] = foo[T]; -fn takebar[T](bar[T] b) {} +fn takebar[T](&bar[T] b) {} fn main() {}
\ No newline at end of file |