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