We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry in advance, I don't know anything about compiler plugin, so I don't know how to interpret this message at all. Maybe it's obvious.
Reproduction:
89e127b54fa2eff5fbba2f94ad91f1b461b6bfd8
:runners:runner-kotest
./gradlew :runners:runner-kotest
This creates the following compilation error:
e: Compilation failed: IrPropertyPublicSymbolImpl for opensavvy.prepared.runner.kotest/launcher|{}launcher[0] is already bound: PROPERTY name:launcher visibility:public modality:FINAL [val] * Source files: * Compiler version: 2.0.0 * Output kind: PROGRAM e: java.lang.IllegalStateException: IrPropertyPublicSymbolImpl for opensavvy.prepared.runner.kotest/launcher|{}launcher[0] is already bound: PROPERTY name:launcher visibility:public modality:FINAL [val] at org.jetbrains.kotlin.ir.symbols.impl.IrBindablePublicSymbolBase.bind(IrPublicSymbolBase.kt:69) at org.jetbrains.kotlin.ir.declarations.impl.IrPropertyImpl.<init>(IrPropertyImpl.kt:65) at org.jetbrains.kotlin.ir.declarations.impl.AbstractIrFactoryImpl.createProperty(IrFactoryImpl.kt:297)
By using the good ol' method of commenting out code until it works, I believe this class is the one that causes the crash:
abstract class PreparedSpec(body: SuiteDsl.() -> Unit) : StringSpec({ preparedSuite { body() } })
I guess the plugin is trying to register it as an actual test because it implements StringSpec, but since it's abstract it can't?
StringSpec
abstract
The text was updated successfully, but these errors were encountered:
Which version ?
Sorry, something went wrong.
Version of what? The Kotest plugin version is 5.9.1, as written in the issue.
Ok the compiler plugin not the kotest gradle plugin. Got it.
No branches or pull requests
Sorry in advance, I don't know anything about compiler plugin, so I don't know how to interpret this message at all. Maybe it's obvious.
Reproduction:
89e127b54fa2eff5fbba2f94ad91f1b461b6bfd8
:runners:runner-kotest
./gradlew :runners:runner-kotest
This creates the following compilation error:
By using the good ol' method of commenting out code until it works, I believe this class is the one that causes the crash:
I guess the plugin is trying to register it as an actual test because it implements
StringSpec
, but since it'sabstract
it can't?The text was updated successfully, but these errors were encountered: