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 the type argument is available inside a closure. | 5 // Regression test for Issue 14304. |
6 | 6 |
| 7 import "dart:mirrors"; |
7 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
8 | 9 |
9 class A<T> { | 10 class A<T> { |
10 foo() { | 11 T m() {} |
11 bar() => T; | |
12 return bar(); | |
13 } | |
14 } | 12 } |
15 | 13 |
16 main() { | 14 main() { |
17 Expect.equals(new A<int>().foo(), int); | 15 ClassMirror a = reflectClass(A); |
18 } | 16 TypeVariableMirror t = a.typeVariables[0]; |
| 17 MethodMirror m = a.declarations[#m]; |
| 18 |
| 19 Expect.equals(t, m.returnType); |
| 20 } |
OLD | NEW |