| library; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/sealed_class/sealed_abstract_class_declaration.dart:5:10: Error: A 'sealed' class can't be marked 'abstract' because it's already implicitly abstract. |
| // Try removing the 'abstract' keyword. |
| // abstract sealed class A {} |
| // ^^^^^^ |
| // |
| // pkg/front_end/testcases/sealed_class/sealed_abstract_class_declaration.dart:6:1: Error: A 'sealed' class can't be marked 'abstract' because it's already implicitly abstract. |
| // Try removing the 'abstract' keyword. |
| // sealed abstract class B {} |
| // ^^^^^^ |
| // |
| import self as self; |
| import "dart:core" as core; |
| |
| abstract sealed class A extends core::Object { |
| synthetic constructor •() → self::A |
| ; |
| } |
| abstract sealed class B extends core::Object { |
| synthetic constructor •() → self::B |
| ; |
| } |