diff options
| author | Jakub <jakub@jakub.cc> | 2013-09-11 23:58:30 +0000 |
|---|---|---|
| committer | Jakub <jakub@jakub.cc> | 2013-09-11 23:58:30 +0000 |
| commit | de799722dc057107a2601a4e8ff6ff08f3a8b16f (patch) | |
| tree | 1b201c28120929d3049ef10d3d6a25d72c7a5e66 | |
| parent | 7173b9d1b8475bf2b44e50b78501f45f98c76bc0 (diff) | |
| download | rust-de799722dc057107a2601a4e8ff6ff08f3a8b16f.tar.gz rust-de799722dc057107a2601a4e8ff6ff08f3a8b16f.zip | |
Fix the empty-impl tests
Use an existing type so that it compiles.
| -rw-r--r-- | src/test/pretty/empty-impl.pp | 4 | ||||
| -rw-r--r-- | src/test/pretty/empty-impl.rs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/pretty/empty-impl.pp b/src/test/pretty/empty-impl.pp index 682a366b262..af401bd25ca 100644 --- a/src/test/pretty/empty-impl.pp +++ b/src/test/pretty/empty-impl.pp @@ -1,5 +1,5 @@ trait X { } -impl X for T; +impl X for uint; trait Y { } -impl Y for T; +impl Y for uint; diff --git a/src/test/pretty/empty-impl.rs b/src/test/pretty/empty-impl.rs index 682a366b262..af401bd25ca 100644 --- a/src/test/pretty/empty-impl.rs +++ b/src/test/pretty/empty-impl.rs @@ -1,5 +1,5 @@ trait X { } -impl X for T; +impl X for uint; trait Y { } -impl Y for T; +impl Y for uint; |
