Files
kotlin-fork/compiler/testData/diagnostics/tests/cyclicHierarchy/kt303.txt
T
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

13 lines
193 B
Plaintext

package
internal val x: kotlin.Int
internal open class Bar {
public constructor Bar()
}
internal open class Foo {
public constructor Foo()
internal final val a: kotlin.Int = 1
}