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

Side by Side Diff: tests/language/regress_25935_test.dart

Issue 1780333002: Ignore bounds in compile time type tests, since they will have been checked at (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, 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 main() {
6 AddIssueSourceMember2 m = new AddIssueSourceMember2();
7 }
8
9 abstract class RepoListEditorState2<M extends RepoListMember2<M>,
10 S extends RepoListEditorState2<M, S>>
11 extends AbstractListEditorState2<M, S> {}
12
13 abstract class AbstractListEditorState2<
14 M extends AbstractListMember2<Object, M>,
15 S extends AbstractListEditorState2<M, S>> extends ComponentState2<S> {}
16
17 class AddIssueSourceMember2 extends RepoListMember2<AddIssueSourceMember2> {}
18
19 class RepoListMember2<M extends RepoListMember2<M>>
20 extends AbstractListMember2<Object, M> {}
21
22 abstract class AbstractListMember2<E, M extends AbstractListMember2<E, M>>
23 extends ComponentState2<M> {}
24
25 abstract class ComponentState2<S extends ComponentState2<S>> {}
26
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698