Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
notNullAssertions
/
doGenerateParamAssertions.kt
blob: 48ec8525c4b83946f55c41f19a3c82841e13ff79 [
file
] [
log
] [
blame
]
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
())
}