You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do @MyAnnotation2("4") in java library, kotlin library, or kotlin source file, KSP2 will consider value to be an string array ["4"] correctly
But in java source file, KSP2 will consider it an single item "4"
For an annotation
If you do
@MyAnnotation2("4")
in java library, kotlin library, or kotlin source file, KSP2 will considervalue
to be an string array["4"]
correctlyBut in java source file, KSP2 will consider it an single item
"4"
Repro
acejingbo@dde34da
See test fail for MyClass.java because value should be [4] but is 4, but it does not fail for MyClassKotlin.kt and MyClassInLib.java
The text was updated successfully, but these errors were encountered: