mirror of
https://github.com/github/codeql.git
synced 2025-12-22 03:36:30 +01:00
Previously we accidentally named these something like <init>$main, which is a name-mangling the Kotlin compiler applies to internal methods but not to constructors, which look to Java just like regular public constructors.
6 lines
78 B
Kotlin
6 lines
78 B
Kotlin
public class Test() {
|
|
|
|
internal constructor(x: Int, y: Int) : this() { }
|
|
|
|
}
|