blob: c06e926d15678e181afd795ab984d4b7d6e5e11d [file] [log] [blame]
// 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.
/// @assertion We say that a type T0 is a subtype of a type T1 (written T0 <: T1)
/// when:
/// Super-Interface: T0 is an interface type with super-interfaces S0,...Sn
/// - and Si <: T1 for some i
/// @description Check that if type T0 is an interface type with super-interfaces
/// S0,...Sn and and Si <: T1 for some i then T0 is a subtype of a type T1. Test
/// the case when S1 extends T1
/// @author sgrekhov@unipro.ru
///
/// @description Check that if type T0 is a subtype of a type T1, then instance
/// of T0 can be assigned to the mixin member of type T1
/// @author sgrekhov@unipro.ru
///
/// This test is generated from super_interface_A02.dart and
/// class_member_x03.dart.
/// Don't modify it. If you want to change this test, change one of the files
/// above and then run generator.dart to regenerate the tests.
import '../../utils/common.dart';
class T1 {
const T1();
}
abstract class S0 {}
abstract class S1 extends T1 {}
abstract class S2 {}
abstract class T0 implements S0, S1, S2 {}
class T implements T0 {}
T0 t0Instance = new T();
T1 t1Instance = new T1();
const t1Default = const T1();
class ClassMemberMixin1_t03 {
T1 m = t1Default;
void set superSetter(dynamic val) {}
}
class ClassMember1_t03 extends Object with ClassMemberMixin1_t03 {
test() {
m = forgetType(t0Instance);
superSetter = forgetType(t0Instance);
}
}
class ClassMemberMixin2_t03<X> {
void set superSetter(dynamic val) {}
}
class ClassMember2_t03<X> extends Object with ClassMemberMixin2_t03<X> {
X m;
ClassMember2_t03(X x): m = x { }
test() {
m = forgetType(t0Instance);
superSetter = forgetType(t0Instance);
}
}
main() {
ClassMember1_t03 c1 = new ClassMember1_t03();
c1.m = forgetType(t0Instance);
c1.test();
c1.superSetter = forgetType(t0Instance);
// Test type parameters
//# <-- NotGenericFunctionType
ClassMember2_t03<T1> c2 = new ClassMember2_t03<T1>(t1Instance);
c2.m = forgetType(t0Instance);
c2.test();
c2.superSetter = forgetType(t0Instance);
//# -->
}