Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
moveToConstructorParameters
/
propertyWithModifiersAndComments.kt.after
blob: 55278139aaae4ed3d5e31bb00fdd7d6588f2c325 [
file
]
// "Move to constructor parameters" "true"
annotation
class
foo
open
class
A
(
s
:
String
,
private
@foo
val
/*1*/
n
:
/* 2 */
Int
)
{
}
class
B
:
A
(
""
,
0
)
fun test
()
{
val a
=
A
(
""
,
0
)
}