tschuchortdev / kotlin-compile-testing

A library for testing Kotlin and Java annotation processors, compiler plugins and code generation
Mozilla Public License 2.0
648 stars 61 forks source link

Annotate KotlinCompilation.kt with experimental #358

Closed wangk5 closed 1 year ago

wangk5 commented 1 year ago

Add ExperimentalCompilerApi annotation to KotlinCompilation.kt

tschuchortdev commented 1 year ago

Is this needed? I thought it would be covered by the compiler flags here. If not, then other classes probably need the annotation as well.

wangk5 commented 1 year ago

@tschuchortdev Hmm, it looks like AbstractKotlinCompilation is annotated with ExperimentalCompilerApi. Since KotlinCompilation is extending this class, it is returning an experimental compiler api error without adding the annotation

wangk5 commented 1 year ago

@tschuchortdev added the annotation to KspTest as well and all checks are now passing!