Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
genericSet.kt
blob: 199993d030a27cb2608429da2e049ec824e5f329 [
file
]
class
Wrapper
<
T
>(
var
x
:
T
)
inline
fun
<
reified T
>
change
(
w
:
Wrapper
<
T
>,
x
:
Any
?)
{
if
(
x
is
T
)
{
w
.
x
=
<!
DEBUG_INFO_SMARTCAST
!>
x
<!>
}
}