rename ReadClassDataTest
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class ClassVal() {
|
||||
val aa = 1
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
abstract class ClassValAbstract {
|
||||
abstract val a: Int
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class ClassVar() {
|
||||
var aa = 1
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
val <P> P.anotherJavaClass: java.lang.Class<P>
|
||||
get() = throw Exception()
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ExtPropInClass {
|
||||
val Int.itIs: Int
|
||||
get() = this
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
val Int.itIs: Int
|
||||
get() = this
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
import java.lang.CharSequence
|
||||
|
||||
val Int.ggg: CharSequence
|
||||
get() = throw Exception()
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
import java.lang.CharSequence
|
||||
|
||||
val Int.ggg: CharSequence?
|
||||
get() = throw Exception()
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ExtValInClass {
|
||||
val Int.asas: java.util.List<Int>?
|
||||
get() = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ExtValInClass<T> {
|
||||
val Int.asas: T
|
||||
get() = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ExtValInClass<P> {
|
||||
val Int.asas: P?
|
||||
get() = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ExtValPIntInClass<P> {
|
||||
val P.asas: Int
|
||||
get() = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
var <P> P.anotherJavaClass: java.lang.Class<P>
|
||||
get() = throw Exception()
|
||||
set(p: java.lang.Class<P>) = throw Exception()
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
class ExtPropInClass {
|
||||
var Int.itIs: Int
|
||||
get() = throw Exception()
|
||||
set(p: Int) = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
var Int.ggg: Int
|
||||
get() = throw Exception()
|
||||
set(p) = throw Exception()
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
class ExtValInClass<P> {
|
||||
var Int.asas: P
|
||||
get() = throw Exception()
|
||||
set(p: P) = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
class ExtValInClass<P> {
|
||||
var Int.asas: P?
|
||||
get() = throw Exception()
|
||||
set(p: P?) = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
import java.util.Map
|
||||
|
||||
var <P, Q> Map<P, Q>.asas: Int
|
||||
get() = throw Exception()
|
||||
set(i: Int) = throw Exception()
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
class ExtValPIntInClass<P> {
|
||||
var P.asas: Int
|
||||
get() = throw Exception()
|
||||
set(p: Int) = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
class ExtValPIntInClass<P> {
|
||||
var P?.asas: Int
|
||||
get() = throw Exception()
|
||||
set(p: Int) = throw Exception()
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
val nsVal = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
var nsVal = 1
|
||||
Reference in New Issue
Block a user