summaryrefslogtreecommitdiff
path: root/test/pos/test5.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2004-01-07 15:28:48 +0000
committerMartin Odersky <odersky@gmail.com>2004-01-07 15:28:48 +0000
commit836f5fbd907fe00bd9bd3849f1d41b13c2afd53a (patch)
treeceda286a11d8f97234bb77634f8e21f23a795433 /test/pos/test5.scala
parentdcac982fd6aefe45c6e91cb582044c54e40dee47 (diff)
downloadscala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.tar.gz
scala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.tar.bz2
scala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.zip
*** empty log message ***
Diffstat (limited to 'test/pos/test5.scala')
-rw-r--r--test/pos/test5.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pos/test5.scala b/test/pos/test5.scala
index bc3a17c9be..4dbafc9ac3 100644
--- a/test/pos/test5.scala
+++ b/test/pos/test5.scala
@@ -14,7 +14,7 @@ object test {
abstract class I[X]() {
// Methods to check the type X and P as seen from instances of I
def chk_ix(x: X): Unit = ();
- def chk_ip(p: P): Unit {}
+ def chk_ip(p: P): Unit;
// Value with type X as seen from instances of I
def val_ix: X = val_ix;