Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/fileRanking/differentFlags.kt
T
2019-10-08 19:13:55 +09:00

21 lines
269 B
Kotlin
Vendored

// DO_NOT_CHECK_CLASS_FQNAME
//FILE: a/a.kt
package a
class A private constructor() {
protected fun a() {
val a = 5
}
}
//FILE: b/a.kt
//significant whitespace
package b
class A public constructor() {
private fun a() {
val a = 5
}
}