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

Side by Side Diff: tests/language/regress_21912_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Regression test for issue 21912.
6
7 class A {}
8 class B extends A {}
9
10 typedef T Function2<S, T>(S z);
11 typedef B AToB(A x);
12 typedef A BToA(B x);
13
14 void main() {
15 {
16 Function2<Function2<A, B>, Function2<B, A>> t1;
17 Function2<AToB, BToA> t2;
18 Function2<Function2<int, double>, Function2<int, double>> left;
19 left = t1; /// 01: ok
20 left = t2; /// 02: ok
21 }
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698