summaryrefslogtreecommitdiff
path: root/test/pending/pos/those-kinds-are-high.scala
blob: 434e64cefb6084d551cd3131aeeed8fc3275cd38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class A {
  trait Container[+T]
  trait Template[+CC[X] <: Container[X]]

  class C1[T] extends Template[C1] with Container[T]
  class C2[T] extends Template[C2] with Container[T]
  
  /** Target expression:
   *    List(new C1[String], new C2[String])
   */
    
  // Here's what would ideally be inferred.
  //
  // scala> :type List[Template[Container] with Container[String]](new C1[String], new C2[String])
  // List[Template[Container] with Container[java.lang.String]]
  //
  // Here's what it does infer.
  // 
  // scala> :type List(new C1[String], new C2[String])
  // <console>:8: error: type mismatch;
  //  found   : C1[String]
  //  required: Container[String] with Template[Container[Any] with Template[Container[Any] with Template[Any] with ScalaObject] with ScalaObject] with ScalaObject
  //        List(new C1[String], new C2[String])
  //             ^
  //
  // Simplified, the inferred type is:
  //
  //   List[Container[String] with Template[Container[Any] with Template[Container[Any] with Template[Any]]]
  //
  // *** Update 2/24/2012
  //
  // Hey, now there are polytypes in the inferred type.
  // Not sure if that is progress or regress.
  //
  // test/pending/pos/those-kinds-are-high.scala:36: error: type mismatch;
  //  found   : C1[String]
  //  required: ScalaObject with Container[String] with Template[ScalaObject with Container with Template[ScalaObject with Container with Template[[X]Container[X]]]]
  //   def fFail = List(new C1[String], new C2[String])
  //                    ^
  // test/pending/pos/those-kinds-are-high.scala:36: error: type mismatch;
  //  found   : C2[String]
  //  required: ScalaObject with Container[String] with Template[ScalaObject with Container with Template[ScalaObject with Container with Template[[X]Container[X]]]]
  //   def fFail = List(new C1[String], new C2[String])
  //                                    ^
  // two errors found
  
  /** Working version explicitly typed.
   */
  def fExplicit = List[Template[Container] with Container[String]](new C1[String], new C2[String])
  
  // nope
  def fFail = List(new C1[String], new C2[String])
}