After upgrading to 2.0.0, one of the tests in my c...
# compiler
t
After upgrading to 2.0.0, one of the tests in my compiler plugin fails with
INLINE_FROM_HIGHER_PLATFORM
. • Works without problem with 1.9.24. • There is no warning in application level code. • The part that fails is not processed by the compiler plugin. • I've checked and I should be on Java 11 everywhere (is there a way to check that somehow). Is there something I have to change in the project config avoid this error?
d
Some of your dependencies was compiled with bytecode version higher than you are using in the project Check the jar with the function, on call of which this error is reported on Also check what target bytecode version is set for your project
thank you color 1
t
Found it:
Copy code
defaultDirectives{
    JvmEnvironmentConfigurationDirectives.JVM_TARGET with JvmTarget.JVM_11
}