Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
callUnderSmartCast.kt
blob: fcd6ac13310194cea794ed126ab1f9513e7454a1 [
file
] [
log
] [
blame
]
interface
T
{
fun foo
():
Int
}
interface
U
:
T
fun test
(
t
:
T
):
Int
{
return
if
(
t
is
U
)
<selection>
t
.
foo
()</
selection
>
+
1
else
t
.
foo
()
}