blob: d590ed16cffd66c4b9c8de453c820a34e576903b [file] [log] [blame]
// Copyright (c) 2022, 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.
/// @assertion We say that a type T0 is a subtype of a type T1 (written
/// T0 <: T1) when:
/// A record type A is a subtype of record type B iff they have same shape and
/// the types of all fields of A are subtypes of the corresponding field types
/// of B
///
/// @description Check that if type T0 is a record with another shape than T1
/// then T0 is not a subtype of T1
/// @author sgrekhov22@gmail.com
///
/// @description Check that if type T0 not a subtype of a type T1, then it cannot
/// be used as an argument of type T1. Test mixin members
/// @author sgrekhov@unipro.ru
///
/// This test is generated from test_types/records_fail_A07.dart and
/// test_cases/arguments_binding_fail_x03.dart. Don't modify it!
/// If you need to change this test, then change one of the files above and then
/// run generator/generator.dart to regenerate the tests.
import '../../utils/common.dart';
import '../../../../Utils/expect.dart';
// SharedOptions=--enable-experiment=records
(int, String, {bool b}) t0Instance = (1, "2", b: true);
(int, String, {List<num> b}) t1Instance = (3, "4", b: <num>[]);
const t1Default = const (5, "6", b: <num>[]);
class ArgumentsBindingSuper1_t03 {
void superTest((int i, String, {List<num> b}) val) {}
void superTestPositioned((int i, String, {List<num> b}) val, [(int i, String, {List<num> b}) val2 = t1Default]) {}
void superTestNamed((int i, String, {List<num> b}) val, {(int i, String, {List<num> b}) val2 = t1Default}) {}
(int i, String, {List<num> b}) get superGetter => forgetType(t0Instance);
void set superSetter((int i, String, {List<num> b}) val) {}
}
class ArgumentsBinding1_t03 extends Object with ArgumentsBindingSuper1_t03 {
test() {
Expect.throws(() {
superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestPositioned(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestPositioned(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestPositioned(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestPositioned(forgetType(t1Instance), forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestPositioned(forgetType(t1Instance), forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestPositioned(forgetType(t1Instance), forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestNamed(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestNamed(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestNamed(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
this.superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
super.superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
superGetter;
}, (e) => e is TypeError);
Expect.throws(() {
this.superGetter;
}, (e) => e is TypeError);
Expect.throws(() {
super.superGetter;
}, (e) => e is TypeError);
}
}
class ArgumentsBindingSuper2_t03<X> {
void superTest(X val) {}
void superTestNamed(X val, {required X val2}) {}
X get superGetter => forgetType(t0Instance);
void set superSetter(X val) {}
}
class ArgumentsBinding2_t03<X> extends Object with ArgumentsBindingSuper2_t03<X> {
test() {
Expect.throws(() {
superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestNamed(forgetType(t0Instance), val2: forgetType(t1Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestNamed(forgetType(t0Instance), val2: forgetType(t1Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestNamed(forgetType(t0Instance), val2: forgetType(t1Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
this.superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
super.superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
this.superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
super.superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
superGetter;
}, (e) => e is TypeError);
Expect.throws(() {
this.superGetter;
}, (e) => e is TypeError);
Expect.throws(() {
super.superGetter;
}, (e) => e is TypeError);
}
}
main() {
// test class members
Expect.throws(() {
new ArgumentsBinding1_t03().superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superTestPositioned(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superTestPositioned(t1Instance, forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superTestNamed(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superTestNamed(t1Instance, val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding1_t03().superGetter;
}, (e) => e is TypeError);
new ArgumentsBinding1_t03().test();
// Test type parameters
// test generic class members
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superTest(forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superTestNamed(forgetType(t0Instance), val2: forgetType(t1Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superTestNamed(forgetType(t1Instance), val2: forgetType(t0Instance));
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superSetter = forgetType(t0Instance);
}, (e) => e is TypeError);
Expect.throws(() {
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().superGetter;
}, (e) => e is TypeError);
new ArgumentsBinding2_t03<(int i, String, {List<num> b})>().test();
}