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
Regression: a field no longer satisfies a get/set method from a structural interface.
This test fails:
@Test public void testTupleCastToStructuralInterface() { auto t = (name: "Bear", age:100); MyStructuralIface iface = (MyStructuralIface)t; assertEquals("Bear", iface.getName()); iface.setName("Bobcat" ); assertEquals("Bobcat", iface.getName()); } @Structural interface MyStructuralIface { String getName(); void setName(String name); }
The text was updated successfully, but these errors were encountered:
https://github.com/manifold-systems/manifold/issues/380
e7e0b81
- fix regression involving fields as structurally equivalent to get/set methods
Fix available with release 2022.1.19
Sorry, something went wrong.
No branches or pull requests
Regression: a field no longer satisfies a get/set method from a structural interface.
This test fails:
The text was updated successfully, but these errors were encountered: