-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 34896. Verify the superconstraint signature invoked by a mixin,…
… not the mixin's one. R=brianwilkerson@google.com, paulberry@google.com Fixes: dart-lang/sdk#34896 Change-Id: I778d572e2e2d0affb15c28d7bf2c1fbb58a8cd8a Reviewed-on: https://dart-review.googlesource.com/c/81204 Commit-Queue: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Paul Berry <paulberry@google.com>
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) 2018, 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. | ||
|
||
// Regression test: verify super-signatures of super-invoked methods of a | ||
// mixin against the superclass, not signatures in the mixin. | ||
|
||
class A<T> { | ||
void remove(T x) {} | ||
} | ||
|
||
mixin M<U> on A<U> { | ||
void remove(Object x) { | ||
super.remove(x as U); | ||
} | ||
} | ||
|
||
class X<T> = A<T> with M<T>; | ||
|
||
main() {} |