Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
invokeRecieverUnsafe.kt
blob: b003852a20ede6333ba4a0ec0c61fa8d18698dbc [
file
]
// SKIP_TXT
// ISSUE: KT-63709
operator
fun
Int
.
invoke
(
unused
:
Int
)
{}
fun test1
(
a
:
Int
?)
{
<!
UNSAFE_CALL
!>
a
<!>(
a
!!)
}
fun test2
(
a
:
Int
?)
{
with
(
a
)
{
<!
UNSAFE_CALL
!>
invoke
<!>(
this
!!)
}
}