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

Unified Diff: tests/language/regress_22976_test.dart

Issue 1070443002: Rework type assignability, subtype, and "more specific than" checking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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/regress_22976_test.dart
diff --git a/tests/compiler/dart2js_extra/22487_test.dart b/tests/language/regress_22976_test.dart
similarity index 51%
copy from tests/compiler/dart2js_extra/22487_test.dart
copy to tests/language/regress_22976_test.dart
index 4bf5426b20e4dc4508044fb5aa0884afe5082e4a..67d69570b3f775d24e480c763b501f95d4f29786 100644
--- a/tests/compiler/dart2js_extra/22487_test.dart
+++ b/tests/language/regress_22976_test.dart
@@ -2,12 +2,13 @@
// 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.
-// Regression test for http://dartbug.com/22487
+// Regression test for issue 22976.
-import 'package:expect/expect.dart';
-
-divIsInt(a, b) => (a / b) is int;
+class A<T> {}
+class B<T> implements A<T> {}
+class C<S, T> implements B<S>, A<T> {}
main() {
- Expect.isFalse((divIsInt)(10, 3));
+ A<int> a0 = new C<int, String>(); /// 01: ok
+ A<int> a1 = new C<String, int>(); /// 02: ok
}
« pkg/analyzer/lib/src/generated/element.dart ('K') | « tests/language/regress_21912_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698