Run LoadJava.CompiledKotlin test group with stdlib if some enum is inside

This commit makes compiler tests working similarly to ResolveByStub IDE tests.
This commit is contained in:
Mikhail Glukhikh
2022-08-17 20:08:24 +02:00
committed by Space
parent fb1c80a7c9
commit d3648bce0c
35 changed files with 476 additions and 500 deletions
@@ -0,0 +1,16 @@
//ALLOW_AST_ACCESS
package test
enum class Enum {
ENTRY1, ENTRY2;
inner class Inner
class Nested
interface Trait
val c: Int = { 1 }()
fun f(): Int = 2
}