Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
classMultipleUsages1.kt
blob: 1b476bf50ac8faa3ac00de34f6987abd1763ab7a [
file
] [
log
] [
blame
]
// TARGET:
class
A
(
val a
:
Int
,
s
:
String
)
{
val x
=
a
+
1
fun foo
()
=
(<
selection
>
a
+
1
</
selection
>)
*
2
}
fun test
()
{
A
(
1
,
"2"
)
}