Remove explicit type arguments: don't report when type argument has annotations

#KT-40985 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-08-12 15:53:29 +09:00
committed by Dmitry Gridin
parent e1a380ec95
commit 5e9333773c
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,7 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
annotation class Foo(val value: String)
fun main() {
val l = listOf<@Foo("bar") <caret>String>("")
}