Files
Mikhail Glukhikh d3648bce0c Run LoadJava.CompiledKotlin test group with stdlib if some enum is inside
This commit makes compiler tests working similarly to ResolveByStub IDE tests.
2022-08-19 10:08:11 +00:00

16 lines
182 B
Kotlin
Vendored

//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
}