dart-sdk/tests/language/covariant/setter_test.dart
Robert Nystrom 7ca5ad46ce Set tests that have mixin errors as 2.19.
Mark tests that contain errors about using a class as a mixin to use
language version 2.19 where that's not an error.

This may not fix all of the tests because it's the language version of
the library where the class is declared that matters, not where the
class is used as a mixin. But most tests have all of their declarations
in the same library, so this should fix most.

Change-Id: I910439ebd2f10f731418dc588b7e4619a0841c16
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285923
Reviewed-by: Jake Macdonald <jakemac@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
2023-03-01 15:03:39 +00:00

95 lines
2.6 KiB
Dart

// Copyright (c) 2017, 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.
// TODO(51557): Decide if the mixins being applied in this test should be
// "mixin", "mixin class" or the test should be left at 2.19.
// @dart=2.19
import "package:expect/expect.dart";
class A {}
abstract class B<T> {
// x will be marked genericCovariantInterface, since x's type is covariant in
// the type parameter T.
void set s2(T x);
// x will be marked genericCovariantInterface, since x's type is covariant in
// the type parameter T.
void set s3(T x);
void set s4(Object x);
void set s5(Object x) {
s4 = x;
}
}
class C extends B<A> {
void set s1(A x) {}
// x will be marked genericCovariantImpl, since it might be called via
// e.g. B<Object>.
void set s2(A x) {}
// x will be marked genericCovariantImpl, since it might be called via
// e.g. B<Object>.
void set s3(covariant A x) {}
void set s4(covariant A x) {}
}
main() {
// Dynamic method calls should always have their arguments type checked.
dynamic d = new C();
Expect.throwsTypeError(() => d.s1 = new Object()); //# 01: ok
// Interface calls should have any arguments marked "genericCovariantImpl"
// type checked provided that the corresponding argument on the interface
// target is marked "genericCovariantInterface".
B<Object> b = new C();
Expect.throwsTypeError(() => b.s2 = new Object()); //# 02: ok
// Interface calls should have any arguments marked "covariant" type checked,
// regardless of whether the corresponding argument on the interface target is
// marked "genericCovariantInterface".
Expect.throwsTypeError(() => b.s3 = new Object()); //# 03: ok
Expect.throwsTypeError(() => b.s4 = new Object()); //# 04: ok
// This calls should have any arguments marked "covariant" type checked.
Expect.throwsTypeError(() => b.s5 = new Object()); //# 05: ok
testMixin(); //# 06: ok
}
abstract class D<T> {
void set m1(T x);
}
class E {
void set m1(A x) {}
}
class F = Object with E implements D<A>;
class G = C with E implements D<A>;
class H extends Object with E implements D<A> {}
class I extends Object with F {}
void testMixin() {
D<Object> f = new F();
f.m1 = new A();
Expect.throwsTypeError(() => f.m1 = new Object());
f = new G();
f.m1 = new A();
Expect.throwsTypeError(() => f.m1 = new Object());
f = new H();
f.m1 = new A();
Expect.throwsTypeError(() => f.m1 = new Object());
f = new I();
f.m1 = new A();
Expect.throwsTypeError(() => f.m1 = new Object());
}