Files
kotlin-fork/idea/testData/quickfix/makePrivateAndOverrideMember/parameterHasInternal.before.Main.kt
T
Dmitry Gridin 6c439ae85a Create TrailingCommaIntention
#KT-34744
2020-02-04 21:34:53 +07:00

11 lines
346 B
Kotlin
Vendored

// "Implements 'getName'" "false"
// DISABLE-ERRORS
// ACTION: Convert to secondary constructor
// ACTION: Create test
// ACTION: Enable a trailing comma by default in the formatter
// ACTION: Make private
// ACTION: Make protected
// ACTION: Make public
// ACTION: Move to class body
class A(<caret>internal val name: String) : JavaInterface {
}