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
The spec in the repository (https://github.com/dart-lang/sdk/blob/master/docs/language/dartLangSpec.tex) currently has:
It is a compile-time error if the superclass of a class $C$ is specified as a superinterface of $C$.
The named test checks that we can compile classes like:
@A() abstract class I3<T> = A1 with B1 implements A1; abstract class J3<T> = A1 with B1 implements A1; @A() abstract class I4 = A1 with B1 implements A1; abstract class J4 = A1 with B1 implements A1; @B() class X4 = A1 with B1 implements A1; class Y4 = A1 with B1 implements A1;
which should all be a compile-time error. See dart-lang/sdk#31624.
The text was updated successfully, but these errors were encountered:
Fix for issue #129. Wrong test is separated to two ones. One should p…
c3da6de
…ass, the second should fail with the compile time error
Fixed
Sorry, something went wrong.
Fix for issue #129. Added test with expects compile time error if cla…
8ae733c
…ss C is superinterface of C
sgrekhov
No branches or pull requests
The spec in the repository (https://github.com/dart-lang/sdk/blob/master/docs/language/dartLangSpec.tex) currently has:
The named test checks that we can compile classes like:
which should all be a compile-time error. See dart-lang/sdk#31624.
The text was updated successfully, but these errors were encountered: