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
{{ message }}
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
It would be nice if it was possible to override automatically generated members of @data classes.
It will then be possible to compile something like this bare example:
@data class A(a: Int, b: Int) {
def toString(): String = {
"foo"
}
def copy()(implicit a: Allocator): A = {
A(a, b)
}
}
The text was updated successfully, but these errors were encountered:
It would be nice if it was possible to override automatically generated members of
@data
classes.It will then be possible to compile something like this bare example:
The text was updated successfully, but these errors were encountered: