New issue
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
[native-image] UserException thrown when Version is used from a substitution class #1889
Comments
Great, thanks @jaikiran! |
A workaround for 19.3.0 only (#1890 will change it) would be to include that feature explicitly with:
|
That's good to know, thanks @eregon! |
Was this issue fixed in |
@thomaswue Do you have the answer to my question above? |
@cstancu maybe you can answer this question? |
Hi GraalVM team!
I tried to replace
System.getProperty("org.graalvm.version").startsWith("19.2.")
withVersion.getCurrent().compareTo(19, 3) < 0
in a class similar to this one:The following exception was then thrown during the native image generation:
Is that an expected behavior?
The text was updated successfully, but these errors were encountered: