Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
regression
/
kt10001.kt
blob: 20d8989fb086dbaf70281de0c6fcadaa97f98011 [
file
]
// FIR_IDENTICAL
fun foo1
(
p
:
Pair
<
Int
?,
Int
>):
Int
{
if
(
p
.
first
!=
null
)
return
p
.
first
!!
return
p
.
second
}
fun foo2
(
p
:
Pair
<
Int
?,
Int
>):
Int
{
if
(
p
.
first
!=
null
)
return
<!
SMARTCAST_IMPOSSIBLE
!>
p
.
first
<!>
return
p
.
second
}