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