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

Unified Diff: tests/language/generic_field_mixin4_test.dart

Issue 3008573002: Migrate test block 113 to Dart 2.0. (Closed)
Patch Set: Merge fixups Created 3 years, 4 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
« no previous file with comments | « tests/language/generic_field_mixin3_test.dart ('k') | tests/language/generic_field_mixin5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/generic_field_mixin4_test.dart
diff --git a/tests/language/generic_field_mixin4_test.dart b/tests/language/generic_field_mixin4_test.dart
deleted file mode 100644
index 994db59f4953d62dc9570acc1bdaf550c77e552a..0000000000000000000000000000000000000000
--- a/tests/language/generic_field_mixin4_test.dart
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2014, 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.
-
-// Test that generic types in mixins are handled.
-
-import 'package:expect/expect.dart';
-
-class M<T> {
- var field = () {
- try {
- throw 0;
- } on T catch (e) {
- return true;
- } catch (e) {}
- return false;
- }();
-}
-
-class A<U> {}
-
-class C1<V> = Object with M<V>;
-class C2 = Object with M<int>;
-class C3 = Object with M<String>;
-
-main() {
- Expect.isTrue(new C1<int>().field);
- Expect.isFalse(new C1<String>().field);
-
- Expect.isTrue(new C2().field);
-
- Expect.isFalse(new C3().field);
-}
« no previous file with comments | « tests/language/generic_field_mixin3_test.dart ('k') | tests/language/generic_field_mixin5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698