about summary refs log tree commit diff
path: root/src/test/run-pass/class-typarams.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/class-typarams.rs')
-rw-r--r--src/test/run-pass/class-typarams.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/class-typarams.rs b/src/test/run-pass/class-typarams.rs
index cbc69719caa..29354c54d8b 100644
--- a/src/test/run-pass/class-typarams.rs
+++ b/src/test/run-pass/class-typarams.rs
@@ -14,7 +14,7 @@ struct cat<U> {
     how_hungry : int,
 }
 
-impl<U> cat<U> {
+pub impl<U> cat<U> {
     fn speak(&mut self) { self.meows += 1u; }
     fn meow_count(&mut self) -> uint { self.meows }
 }