Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
multiModuleQuickFix
/
memberFunParameterToReceiverByImpl
/
jvm
/
jvm.kt
blob: 664d5ace89716415750693d93677e0b29d46b1ba [
file
] [
log
] [
blame
]
actual
class
Foo
{
actual fun foo
(
n
:
Int
,
s
:
String
)
{
}
}
fun
Foo
.
test
()
{
foo
(
1
,
"2"
)
}