Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 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 | |
| 7 // dart2js. | |
| 8 | |
| 9 class A<T> { | |
| 10 A(f); | |
| 11 } | |
| 12 | |
| 13 class B<T> extends A<T> { | |
| 14 B({void f(T foo)}) : super((T a) { f = (a) => 42;}); | |
| 15 } | |
| 16 | |
| 17 main() { | |
| 18 var t = new B<int>(); | |
| 19 } | |
| OLD | NEW |