Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
severalSmartCastsOnReified.kt
blob: 382151de7af7e31aa563a7ddfd349f5617d8e525 [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
inline
fun
<
reified T
:
CharSequence
?>
foo
(
y
:
Any
?)
{
if
(
y
is
T
?)
{
if
(
y
!=
null
)
{
bar
(<!
DEBUG_INFO_SMARTCAST
!>
y
<!>)
}
}
}
fun bar
(
x
:
CharSequence
)
{}