Chromium Code Reviews| Index: tests/compiler/dart2js/cps_ir/input/runtime_types_1.dart |
| diff --git a/tests/compiler/dart2js/cps_ir/input/runtime_types_1.dart b/tests/compiler/dart2js/cps_ir/input/runtime_types_1.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f67e4d3a92b1d48c8c8a5cc224f57c578bd328ac |
| --- /dev/null |
| +++ b/tests/compiler/dart2js/cps_ir/input/runtime_types_1.dart |
| @@ -0,0 +1,7 @@ |
| +class C<T> { |
| + foo() => print(T); |
| +} |
| + |
| +main() { |
| + new C<int>().foo(); |
| +} |