KT-1056 Don't allow passing type arguments to T

#KT-1056 Fixed
This commit is contained in:
Andrey Breslav
2014-11-04 10:22:13 +02:00
parent 35766dfa20
commit 8436147cec
5 changed files with 35 additions and 2 deletions
@@ -11,7 +11,7 @@ package foobar.a
package foobar
abstract class Foo<T>() {
abstract val x : T<Int>
abstract val x : T<!WRONG_NUMBER_OF_TYPE_ARGUMENTS!><Int><!>
}
// FILE: b.kt