Files
kotlin/compiler/testData/asJava/lightClasses/compilationErrors/SameName.kt
Dmitry Petrov 9dc2ad664d Fix ConstantValue-related testData for lightClasses tests
TODO support custom language version settings for lightClasses tests
2018-07-24 10:52:16 +03:00

16 lines
308 B
Kotlin
Vendored

// A
class A {
fun f(i: Int, s: Double) {}
fun f(i: Int, s: Double) {}
fun g(i: Int, s: Double): Int {}
fun g(s: Int, i: Double): String {}
private val i: Int = { 0 }()
private val i: String = { "" }()
private val j: String = { "a" }()
private val j: String = { "b" }()
}