summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-01-17 13:13:38 +0000
committermichelou <michelou@epfl.ch>2006-01-17 13:13:38 +0000
commit124760ce044a13e51ad18530ae4ef3a75d2f9370 (patch)
tree2a625fc45516c496ded563e7e4132fc67d1a4b81 /test
parentcb5094082aa96a4537ca56bb1b9d6e9965a08e20 (diff)
downloadscala-124760ce044a13e51ad18530ae4ef3a75d2f9370.tar.gz
scala-124760ce044a13e51ad18530ae4ef3a75d2f9370.tar.bz2
scala-124760ce044a13e51ad18530ae4ef3a75d2f9370.zip
- replaced ':' (deprecated) by 'requires' in te...
- replaced ':' (deprecated) by 'requires' in test/files/pos/bug211.scala
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/bug211.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug211.scala b/test/files/pos/bug211.scala
index 8c5cf1dc1e..895fb9a8f1 100644
--- a/test/files/pos/bug211.scala
+++ b/test/files/pos/bug211.scala
@@ -1,6 +1,6 @@
trait A;
trait B;
-class Foo: (A with B) extends A with B;
+class Foo requires (A with B) extends A with B;
object Test extends Application {
new Foo();
System.out.println("bug211 completed");