Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
classInAnonymousInitializer.kt.after
blob: 2e00511fb9fda89565dd38e27c55089a119e3284 [
file
] [
log
] [
blame
]
class
A
(
a
:
Int
,
i
:
Int
=
1
+
2
)
{
init
{
val t
=
i
}
}
fun test
()
{
A
(
1
)
}