Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
classParameterInFunctionBody.kt
blob: 7b54067f1ee048d5673f4b91c31d12e7f024b081 [
file
] [
log
] [
blame
]
// TARGET:
class
A
(
a
:
Int
)
{
fun foo
()
=
<selection>
1
+
2
</
selection
>
}
fun test
()
{
A
(
1
)
}