Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: tests/language/src/CyclicTypeVariableTest.dart

Issue 10248007: test rename overhaul: step 8 - language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/src/CyclicTypeVariableTest.dart
diff --git a/tests/language/src/CyclicTypeVariableTest.dart b/tests/language/src/CyclicTypeVariableTest.dart
deleted file mode 100644
index a6c247777a1aa9a63e619d842d493b0fea882838..0000000000000000000000000000000000000000
--- a/tests/language/src/CyclicTypeVariableTest.dart
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS 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.
-
-// Tests cyclic reference to type variables in type expressions
-
-class Base<T> {}
-
-class Derived extends Base<Derived> {} // legal
-
-typedef void funcType<T
-extends T /// 01: static type warning
->(T arg);
-
-class DerivedFunc extends Base<funcType<DerivedFunc>> { }
-
-
-interface A<S
-extends S /// 02: static type warning
-> {
- S field;
-}
-
-interface B<U extends Base<U>> { // legal
- U field;
-}
-
-class C1<V
-extends V /// 03: static type warning
-> {
- V field;
-}
-
-class C2<V
-extends V /// 04: static type warning
-> implements A<V> {
- V field;
-}
-
-class D1<W extends Base<W>> { // legal
- W field;
-}
-
-class D2<W extends Base<W>> implements B<W>{ // legal
- W field;
-}
-
-class E<X extends Base<funcType<X>>> { // legal
-
- X field;
-}
-
-main() {
- new C1<int>();
- new C2<int>();
- new D1<Derived>();
- new D2<Derived>();
- new E<DerivedFunc>();
- funcType<Object> val = null;
-}
« no previous file with comments | « tests/language/src/CyclicImportTest.dart ('k') | tests/language/src/DefaultClassImplicitConstructorTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698