Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
movePropertyToConstructor
/
functionReference.kt.after
blob: 86f19cf261eef17e6ed249975d8be5eb67288e9b [
file
] [
log
] [
blame
]
import
kotlin
.
reflect
.
KFunction3
class
Baz
fun foo
(
a
:
Int
,
b
:
String
,
d
:
Baz
)
{
}
class
TestClass
(
val prop1
:
KFunction3
<
Int
,
String
,
Baz
,
Unit
>
=
::
foo
)
{
}