Add tests that there's no PSI for all kinds of synthetic classes
This commit is contained in:
@@ -12,12 +12,27 @@ trait TT : T {
|
||||
|
||||
fun f() {
|
||||
var i = 0
|
||||
val myLocalFun = {
|
||||
val myAnonymousFunction = {
|
||||
++i
|
||||
}
|
||||
|
||||
fun myLocalFunction() {
|
||||
i++
|
||||
}
|
||||
|
||||
class MyLocalClass {
|
||||
}
|
||||
|
||||
val myAnonymousObject = object {
|
||||
}
|
||||
|
||||
|
||||
val lambda = { }
|
||||
val samWrapper = Thread(lambda)
|
||||
|
||||
val samLambda = Thread { }
|
||||
|
||||
val callableReference = Any::toString
|
||||
}
|
||||
|
||||
class A {
|
||||
|
||||
Reference in New Issue
Block a user