Renamed *.jet to *.kt in test data of JetPsiCheckerTest.
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
|
||||
open class NoC
|
||||
class NoC1 : NoC()
|
||||
|
||||
class WithC0() : NoC()
|
||||
open class WithC1() : NoC()
|
||||
class NoC2 : <error>WithC1</error>
|
||||
class NoC3 : WithC1()
|
||||
class WithC2() : <error>WithC1</error>
|
||||
|
||||
class NoPC {
|
||||
}
|
||||
|
||||
class WithPC0() {
|
||||
}
|
||||
|
||||
class WithPC1(a : Int) {
|
||||
}
|
||||
|
||||
|
||||
class Foo() : <error>WithPC0</error>(), <error>this</error>() {
|
||||
|
||||
}
|
||||
|
||||
class WithCPI_Dup(x : Int) {
|
||||
<error>var x : Int</error>
|
||||
}
|
||||
|
||||
class WithCPI(x : Int) {
|
||||
val a = 1
|
||||
val b : Int = $a
|
||||
val xy : Int = x
|
||||
}
|
||||
|
||||
class NoCPI {
|
||||
val a = 1
|
||||
var ab = <error>1</error>
|
||||
get() = 1
|
||||
set(v) {}
|
||||
}
|
||||
Reference in New Issue
Block a user