| 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 abstract class C extends core::Object { | 5 abstract class C extends core::Object { |
| 6 constructor •() → void | 6 default constructor •() → void |
| 7 : super core::Object::•() | 7 : super core::Object::•() |
| 8 ; | 8 ; |
| 9 } | 9 } |
| 10 static method main() → dynamic { | 10 static method main() → dynamic { |
| 11 throw new core::AbstractClassInstantiationError::•("C"); | 11 throw new core::AbstractClassInstantiationError::•("C"); |
| 12 } | 12 } |
| OLD | NEW |