Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
notNullAssertions
/
doGenerateParamAssertions.kt
blob: 48ec8525c4b83946f55c41f19a3c82841e13ff79 [
file
]
import
test
.
doGenerateParamAssertions
as
C
class
TestString
:
C
<
String
>()
{
override
fun doTest
(
s
:
String
)
{
}
}
class
TestUnit
:
C
<
Unit
>()
{
override
fun doTest
(
s
:
Unit
)
{
}
}
fun doTest
()
{
C
.
runTest
(
TestString
())
C
.
runTest
(
TestUnit
())
}