Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
notNullAssertions
/
noAssertionForNullableGenericMethodCall.kt
blob: 112dbdbaf342396b83d2729a36fe06abb6a86fd9 [
file
]
import
java
.
util
.
HashMap
class
A
<
T
:
Any
>
{
fun main
()
{
HashMap
<
String
,
T
>()[
""
]
}
}