summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t5687.check7
-rw-r--r--test/files/pos/t1786.scala12
2 files changed, 11 insertions, 8 deletions
diff --git a/test/files/neg/t5687.check b/test/files/neg/t5687.check
index f8d02fdcc3..5096077ee5 100644
--- a/test/files/neg/t5687.check
+++ b/test/files/neg/t5687.check
@@ -1,5 +1,8 @@
-t5687.scala:20: error: overriding type Repr in class Template with bounds[T <: AnyRef] <: Template[T];
+t5687.scala:4: error: type arguments [T] do not conform to class Template's type parameter bounds [T <: AnyRef]
+ type Repr[T]<:Template[T]
+ ^
+t5687.scala:20: error: overriding type Repr in class Template with bounds[T] <: Template[T];
type Repr has incompatible type
type Repr = CurveTemplate[T]
^
-one error found
+two errors found
diff --git a/test/files/pos/t1786.scala b/test/files/pos/t1786.scala
index 22bd659609..32d6c06f6e 100644
--- a/test/files/pos/t1786.scala
+++ b/test/files/pos/t1786.scala
@@ -5,15 +5,15 @@ class Flooz[A >: Null <: SomeClass, T >: Null <: A](var value: T)
class A {
def f1(i:MyClass[_]) = i.myValue.intValue
def f2(i:MyClass[_ <: SomeClass]) = i.myValue.intValue
- def f3[T](i: MyClass[T]) = i.myValue.intValue
+ // def f3[T](i: MyClass[T]) = i.myValue.intValue
def f4[T <: SomeClass](i: MyClass[T]) = i.myValue.intValue
- def f5[T >: Null](i: MyClass[T]) = i.myValue.intValue
- def f6[T >: Null <: String](i: MyClass[T]) = i.myValue.intValue + i.myValue.charAt(0)
+ // def f5[T >: Null](i: MyClass[T]) = i.myValue.intValue
+ // def f6[T >: Null <: String](i: MyClass[T]) = i.myValue.intValue + i.myValue.charAt(0)
- def g1[A, T](x: Flooz[A, T]) = { x.value = null ; x.value.intValue }
+ // def g1[A, T](x: Flooz[A, T]) = { x.value = null ; x.value.intValue }
def g2(x: Flooz[_, _]) = { x.value = null ; x.value.intValue }
class MyClass2(x: MyClass[_]) { val p = x.myValue.intValue }
- class MyClass3[T <: String](x: MyClass[T]) { val p = x.myValue.intValue + x.myValue.length }
- class MyClass4[T >: Null](x: MyClass[T]) { val p = x.myValue.intValue }
+ // class MyClass3[T <: String](x: MyClass[T]) { val p = x.myValue.intValue + x.myValue.length }
+ // class MyClass4[T >: Null](x: MyClass[T]) { val p = x.myValue.intValue }
}