-
Notifications
You must be signed in to change notification settings - Fork 32
Closed
Description
When running in JDK 11, given:
final case class CommandEnvelope(entityId: String, payload: Any)the output is:
public final class CommandEnvelope implements scala.Product, scala.Serializable {
static public abstract R apply (T1 v1, T2 v2) ;
static public java.lang.String toString () { throw new RuntimeException(); }
public java.lang.String entityId () { throw new RuntimeException(); }
public Object payload () { throw new RuntimeException(); }
// not preceding
public CommandEnvelope (java.lang.String entityId, Object payload) { throw new RuntimeException(); }
}This produces multiple errors in apply():
T1,T2andRare undefinedstatic abstractis an invalid combination of modifiers.
Metadata
Metadata
Assignees
Labels
No labels