Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
afterBinaryExpr.kt
blob: 2cc12b5640049116a04ed4b7ac019108fed9b26c [
file
]
package
o
class
A
{
infix fun foo
(
b
:
B
)
=
b
}
class
B
{
fun bar
()
{}
}
fun test
(
a
:
A
,
b
:
B
?)
{
a foo b
!!
<!
DEBUG_INFO_SMARTCAST
!>
b
<!>.
bar
()
}