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
After some experimentation, I believe I've narrowed it down to two patterns of code, both related to annotations:
public interface Foo {
// Redundant parentheses around the annotation parameter causes this error
@Nullable(("reason"))
String a();
// As does an annotation parameter of negative float. `-1` appears to be fine
@Bar(-1.5)
double c();
// `-1d` also fails.
@Bar(-1d)
double c();
// It fails regardless of whether the parameter is explicitly named
@Bar(value = -1d)
double d();
}
@interface Bar {
double value();
}
The text was updated successfully, but these errors were encountered:
I am getting an error: semanticdb-javac when running scip-java on my code.
After some experimentation, I believe I've narrowed it down to two patterns of code, both related to annotations:
The text was updated successfully, but these errors were encountered: