Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
addExclExclCall
/
functionReference.kt.after
blob: f2ce9d61e0f4f22f8e9905c0ba9998ca1de44e65 [
file
] [
log
] [
blame
]
// "Add non-null asserted (!!) call" "true"
class
Foo
{
fun f
()
=
1
}
fun test
(
foo
:
Foo
?)
{
val f
=
foo
!!::
f
}
// TODO: Enable when FIR reports UNSAFE_CALL for function reference on nullable (currently UNRESOLVED_REFERENCE)
/* IGNORE_FIR */