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 // Regression test for Issue 14304. | 5 // Regression test for Issue 14304. |
6 | 6 |
| 7 library lib; |
| 8 |
| 9 @MirrorsUsed(targets: "lib") |
7 import "dart:mirrors"; | 10 import "dart:mirrors"; |
8 import "package:expect/expect.dart"; | 11 import "package:expect/expect.dart"; |
9 | 12 |
10 class A<T> { | 13 class A<T> { |
11 T m() {} | 14 T m() {} |
12 } | 15 } |
13 | 16 |
14 main() { | 17 main() { |
15 ClassMirror a = reflectClass(A); | 18 ClassMirror a = reflectClass(A); |
16 TypeVariableMirror t = a.typeVariables[0]; | 19 TypeVariableMirror t = a.typeVariables[0]; |
17 MethodMirror m = a.declarations[#m]; | 20 MethodMirror m = a.declarations[#m]; |
18 | 21 |
19 Expect.equals(t, m.returnType); | 22 Expect.equals(t, m.returnType); |
20 } | 23 } |
OLD | NEW |