| 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 import "package:expect/expect.dart"; | |
| 6 | |
| 7 // Test that type variables are available in closures. | 5 // Test that type variables are available in closures. |
| 8 | 6 |
| 9 class A<T> { | 7 class A<T> { |
| 10 A(); | 8 A(); |
| 11 | 9 |
| 12 A.bar() { | 10 A.bar() { |
| 13 g() { | 11 g() { |
| 14 new A<T>(); | 12 new A<T>(); |
| 15 } | 13 } |
| 16 g(); | 14 g(); |
| 17 } | 15 } |
| 18 | 16 |
| 19 foo() { | 17 foo() { |
| 20 g() { | 18 g() { |
| 21 return new A<T>(); | 19 return new A<T>(); |
| 22 } | 20 } |
| 23 return g(); | 21 return g(); |
| 24 } | 22 } |
| 25 } | 23 } |
| 26 | 24 |
| 27 main() { | 25 main() { |
| 28 Expect.isTrue(new A<int>().foo() is A<int>); | 26 Expect.isTrue(new A<int>().foo() is A<int>); |
| 29 Expect.isTrue(new A<int>.bar().foo() is A<int>); | 27 Expect.isTrue(new A<int>.bar().foo() is A<int>); |
| 30 } | 28 } |
| OLD | NEW |