summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-01-17 15:10:44 +0000
committermichelou <michelou@epfl.ch>2006-01-17 15:10:44 +0000
commitc0578852eb7d5ca0b117dcc147bdffc38c404c57 (patch)
tree27049f323fd66b17ec524f98ccc22bdaa11022d6 /test
parent8ecff3568d62472d02e23698330a8111b4b081b2 (diff)
downloadscala-c0578852eb7d5ca0b117dcc147bdffc38c404c57.tar.gz
scala-c0578852eb7d5ca0b117dcc147bdffc38c404c57.tar.bz2
scala-c0578852eb7d5ca0b117dcc147bdffc38c404c57.zip
replaced ':' (deprecated) by 'requires' in test...
replaced ':' (deprecated) by 'requires' in test/files/pos/bug360.scala
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/bug360.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug360.scala b/test/files/pos/bug360.scala
index 35f6a94b03..9c5f243365 100644
--- a/test/files/pos/bug360.scala
+++ b/test/files/pos/bug360.scala
@@ -3,7 +3,7 @@
abstract class Bug360A requires Bug360C {
def f: String = "hello";
}
-trait Bug360B: Bug360C {
+trait Bug360B requires Bug360C {
object d {
System.out.println(f);
}