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