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
The following code cannot be saved. Method names are not always identifiers, and even when they are supposed to be identifiers the parser may be giving back an incorrect AST due to syntax errors.
The following code cannot be saved. Method names are not always identifiers, and even when they are supposed to be identifiers the parser may be giving back an incorrect AST due to syntax errors.
class Ci<S> implements I<> {
factory I<R>() {}
}
interface I<T extends Map> factory Ci<T> {
}
Compilation errors go away and the file can be saved if a generic type is added within the <>
The text was updated successfully, but these errors were encountered: