Does it? It actually fails to compile with all versions with
[error] class Something needs to be abstract, since def value: Int in trait Base is not defined
[error] final case class Something() extends Error
[error] ^
Also ensure that you actualy extend your defined Error type and not java.lang.Error. All definitions from scala and java.lang packages are available without explicit imports
Indeed, after reopening VSCode the error was shown. I have enabled auto-save in VSCode but not before manually saving the error showed up. Thank you agian!