summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-01-17 13:15:06 +0000
committermichelou <michelou@epfl.ch>2006-01-17 13:15:06 +0000
commit60ee99e4ad87fd4f50a7c6e3d89b4305733c5f9b (patch)
treea0c5d22b84827c5c912806eb97c1ecc56f554a6a /test
parent124760ce044a13e51ad18530ae4ef3a75d2f9370 (diff)
downloadscala-60ee99e4ad87fd4f50a7c6e3d89b4305733c5f9b.tar.gz
scala-60ee99e4ad87fd4f50a7c6e3d89b4305733c5f9b.tar.bz2
scala-60ee99e4ad87fd4f50a7c6e3d89b4305733c5f9b.zip
- replaced ':' (deprecated) by 'requires' in te...
- replaced ':' (deprecated) by 'requires' in test/files/pos/philippe4.scala
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/philippe4.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/philippe4.scala b/test/files/pos/philippe4.scala
index c9b1cdaeb0..c98aa2236e 100644
--- a/test/files/pos/philippe4.scala
+++ b/test/files/pos/philippe4.scala
@@ -1,3 +1,3 @@
-trait Foo[t <: Foo[t]]: t {
+trait Foo[t <: Foo[t]] requires t {
def foo(that: t): Boolean;
}