OLD | NEW |
1 library; | 1 library; |
2 import self as self; | 2 import self as self; |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 | 4 |
5 class A extends core::Object { | 5 class A extends core::Object { |
6 constructor •(dynamic x) → void | 6 constructor •(dynamic x) → void |
7 : super core::Object::•() | 7 : super core::Object::•() |
8 ; | 8 ; |
9 } | 9 } |
10 class B extends self::A { | 10 class B extends self::A { |
11 const constructor •() → void | 11 const constructor •() → void |
12 : invalid-initializer | 12 : final dynamic #t1 = const core::_ConstantExpressionError::•()._throw(new c
ore::_CompileTimeError::•("pkg/front_end/testcases/rasta/bad_explicit_super_cons
tructor.dart:10:15: Error: Method not found: 'super.'.\n const B() : super();\n
^")) |
13 ; | 13 ; |
14 } | 14 } |
15 static method main() → dynamic { | 15 static method main() → dynamic { |
16 new self::B::•(); | 16 new self::B::•(); |
17 const self::B::•(); | 17 const self::B::•(); |
18 } | 18 } |
OLD | NEW |