Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
FunctionLiteralFromExpected.kt
blob: 08b0e4c44cf59dbd3a80963e57558b7a59fc4398 [
file
] [
log
] [
blame
]
class
A
{
fun foo
()
=
1
}
fun apply
(
x
:
(
A
)
->
Int
)
=
2
fun test
()
{
apply
<selection>
{
it
.
foo
()}</
selection
>
}