Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
smartCasts
/
genericIntersection.kt
blob: 51c34682f0ed191e135e4d4063bfa9a37435fc6c [
file
] [
log
] [
blame
]
// See also KT-7801
class
A
fun
<
T
>
test
(
v
:
T
):
T
{
val a
:
T
=
if
(
v
!
is
A
)
v
else
v
return
a
}
fun box
()
=
test
(
"OK"
)