Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
moveToConstructorParameters
/
propertyWithModifiersAndComments.kt
blob: 4b5faee333e49db64a7ca4b376bd7654de68ec3b [
file
] [
log
] [
blame
]
// "Move to constructor parameters" "true"
annotation
class
foo
open
class
A
(
s
:
String
)
{
<caret>
private
@foo
val
/*1*/
n
:
/* 2 */
Int
}
class
B
:
A
(
""
)
fun test
()
{
val a
=
A
(
""
)
}