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