From 72c11c60b14685648b2bf3d6b5a6a6230323f099 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Sat, 14 Aug 2010 08:19:56 +0000 Subject: closes #3691. TODO: clean this up, introduce datatypes to denote kinds, split checkKindBounds into kind inference and subkind checking review by odersky --- test/files/neg/t3691.scala | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/files/neg/t3691.scala (limited to 'test/files/neg/t3691.scala') diff --git a/test/files/neg/t3691.scala b/test/files/neg/t3691.scala new file mode 100644 index 0000000000..69e8bef630 --- /dev/null +++ b/test/files/neg/t3691.scala @@ -0,0 +1,11 @@ +object Test { + trait A[X] { type A[x <: X] = x } + val a = (new A[String]{}): { type A[x <: String] } // ok + val b = (new A[String]{}): { type A[x] } // not ok + val c = (new A[String]{}): { type A } // not ok + + val x = (new { type A = String }): { type A[X] } // not ok +//a: AnyRef{type A[X]} + + identity[x.A[Any]] _ +} \ No newline at end of file -- cgit v1.2.3