Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
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"
}