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
I'm working with a library that is written in kotlin, and running into a compilation error on 3.0.0-RC2 that doesn't happen on 2.13.5. The decompiled .class file looks like:
public abstract class VerificationResult {
public static final class Ok extends VerificationResult {...}
public static final class Failed extends VerificationResult {...}
...
}
and then there is a method on another class like:
public void displayFailures(@NotNull List<Failed> failures)
I then get this compiler error when calling the method: