OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that a type variable used in a parameter of a constructor that | 5 // Test that a type variable used in a parameter of a constructor that |
6 // has a closure in its initializer list does not lead to a crash in | 6 // has a closure in its initializer list does not lead to a crash in |
7 // dart2js. | 7 // dart2js. |
8 | 8 |
9 class A<T> { | 9 class A<T> { |
10 A(f); | 10 A(f); |
11 } | 11 } |
12 | 12 |
13 class B<T> extends A<T> { | 13 class B<T> extends A<T> { |
14 B({void f(T foo)}) : super((T a) { f = (a) => 42;}); | 14 B({void f(T foo)}) |
| 15 : super((T a) { |
| 16 f = (a) => 42; |
| 17 }); |
15 } | 18 } |
16 | 19 |
17 main() { | 20 main() { |
18 var t = new B<int>(); | 21 var t = new B<int>(); |
19 } | 22 } |
OLD | NEW |