725df49c8c
(cherry picked from commit f3fa779)
11 lines
280 B
Kotlin
Vendored
11 lines
280 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: There's a cycle in the delegation calls chain
|
|
// ERROR: There's a cycle in the delegation calls chain
|
|
|
|
class NonReachableLoop {
|
|
constructor<caret>(x: String)
|
|
|
|
constructor(x: Int, y: Int): this(x + y)
|
|
|
|
constructor(x: Int): this(x, x)
|
|
} |