c7aedd932c
Compiler plugins are currently only supported in source modules. This commit makes them also available in code fragments with source context.
9 lines
109 B
Kotlin
Vendored
9 lines
109 B
Kotlin
Vendored
@org.jetbrains.kotlin.fir.plugin.AllOpen
|
|
class Foo {
|
|
fun call() {}
|
|
}
|
|
|
|
class Bar : Foo() {}
|
|
|
|
Bar().call()
|