Files
codeql/java/ql/test/kotlin/library-tests/internal-constructor-called-from-java/test.kt
2022-11-16 13:49:59 +00:00

7 lines
79 B
Kotlin

public class Test() {
internal constructor(x: Int, y: Int) : this() { }
}