Chromium Code Reviews| Index: tests/language/type_variable_initializer_test.dart |
| diff --git a/tests/language/type_variable_initializer_test.dart b/tests/language/type_variable_initializer_test.dart |
| deleted file mode 100644 |
| index 3d5a85d114ba327384329c8a743b5fe501ea4665..0000000000000000000000000000000000000000 |
| --- a/tests/language/type_variable_initializer_test.dart |
| +++ /dev/null |
| @@ -1,24 +0,0 @@ |
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
|
eernst
2017/09/04 17:04:58
Lost coverage: don't delete this file.
|
| -// for details. All rights reserved. Use of this source code is governed by a |
| -// BSD-style license that can be found in the LICENSE file. |
| - |
| -import "package:expect/expect.dart"; |
| - |
| -// Regression test for dart2js where the reference to [:this:] in a |
| -// constructor was not propagated to the super initializers. |
| - |
| -class A<T> { |
| - var map; |
| - // Usage of type variables in the initializer makes the SSA builder |
| - // want to access [:this:]. And because the initializers of A are |
| - // inlined in the constructor of B, we have to make sure the |
| - // [:this:] in the A constructor has a corresponding |
| - // SSA instruction. |
| - A() : map = new Map<T, T>(); |
| -} |
| - |
| -class B<T> extends A<T> {} |
| - |
| -main() { |
| - Expect.isTrue(new B<int>().map is Map<int, int>); |
| -} |