| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 foo(a, [b]) { | 5 foo(a, [b]) { |
| 6 } | 6 } |
| 7 | 7 |
| 8 class A { | 8 class A { |
| 9 A(a, [b]); | 9 A(a, [b]); |
| 10 } | 10 } |
| 11 | 11 |
| 12 class B { | 12 class B { |
| 13 B() | 13 B() |
| 14 : super(b: 1) /// 01: runtime error | 14 : super(b: 1) /// 01: runtime error |
| 15 ; | 15 ; |
| 16 } | 16 } |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 new B(); /// 01: continued | 19 new B(); /// 01: continued |
| 20 foo(b: 1); /// 02: runtime error | 20 foo(b: 1); /// 02: runtime error |
| 21 } | 21 } |
| OLD | NEW |