We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile error on extension class involving super constructor generic parameter referencing the super class's type var.
The essential bits:
Super-class
package abc; public class SuperClass<T extends SuperClass<T>> { public SuperClass(Class<T> classT) { . . . } }
Subclass
package abc; public class SubClass extends SuperClass<SubClass>{ public SubClass() { super(SubClass.class); } }
Extension class
package myproject.extensions.abc.SubClass; . . . @Extension public class SubClassExt { public static void myMethod(@This SubClass thiz) { . . . } }
Error: Cannot find symbol class T
The text was updated successfully, but these errors were encountered:
https://github.com/manifold-systems/manifold/issues/392
09ee2e3
- cast as raw generic type
Fix available with release 2022.1.22
Sorry, something went wrong.
No branches or pull requests
Compile error on extension class involving super constructor generic parameter referencing the super class's type var.
The essential bits:
Super-class
Subclass
Extension class
Error: Cannot find symbol class T
The text was updated successfully, but these errors were encountered: