Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
boxJvm
/
fir
/
emptyIntersectionWarning.kt
blob: 07aaccdcc49fc0efe5bd429424d6018cff791835 [
file
]
// TARGET_BACKEND: JVM_IR
interface
I
class
View1
fun
<
T
:
View1
>
findViewById1
():
T
?
=
null
fun test1
():
I
?
=
findViewById1
()
fun box
():
String
{
test1
()
return
"OK"
}