[FIR-TEST] Add new testdata generated after changes in previous commit

This commit is contained in:
Dmitriy Novozhilov
2019-12-11 16:16:22 +03:00
parent e9c02a1cca
commit 2536fa0cd5
4578 changed files with 104067 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
open class NoC
class NoC1 : NoC
class WithC0() : NoC()
open class WithC1() : NoC
class NoC2 : WithC1
class NoC3 : WithC1()
class WithC2() : WithC1
class WithPC0() {
}
class WithPC1(a : Int) {
}
class Foo() : WithPC0, <!SYNTAX!>this<!>() {
}
class WithCPI_Dup(x : Int) {
var x : Int
}
class WithCPI(x : Int) {
val a = 1
val xy : Int = x
}
class NoCPI {
val a = 1
var ab = 1
get() = 1
set(v) {}
}