blob: 188daf8505479293b2177b012c081388123cdf38 [file] [log] [blame]
/*
* Copyright (c) 2019, 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 In a migrated library, override checking must check that an
* override is consistent with all overridden methods from other migrated
* libraries in the super-interface chain, since a legacy library is permitted
* to override otherwise incompatible signatures for a method.
*
* @description Check that if generic opted-in class extends generic legacy
* class, child opted-in class type parameter can extend [Null].
*
* @author iarkh@unipro.ru
*/
// SharedOptions=--enable-experiment=non-nullable
import "../../Utils/expect.dart";
import "override_checking_legacy_lib.dart";
class Opted<T extends Null> extends LEGACY_CLASS<T> {
dynamic getParamType() => typeOf<T>();
}
class OptedInt<T extends Null> extends LEGACY_CLASS_INT<T> {
dynamic getParamType() => T;
}
class OptedObject<T extends Null> extends LEGACY_CLASS_OBJECT<T> {
dynamic getParamType() => T;
}
class OptedFunction<T extends Null> extends LEGACY_CLASS_FUNCTION<T> {
dynamic getParamType() => T;
}
class OptedNull<T extends Null> extends LEGACY_CLASS_NULL<T> {
dynamic getParamType() => T;
}
main() {
Expect.equals(typeOf<Null>(), Opted().getParamType());
Expect.equals(typeOf<Null>(), Opted<Null>().getParamType());
Expect.equals(typeOf<Null>(), OptedInt().getParamType());
Expect.equals(typeOf<Null>(), OptedInt<Null>().getParamType());
Expect.equals(typeOf<Null>(), OptedObject().getParamType());
Expect.equals(typeOf<Null>(), OptedObject<Null>().getParamType());
Expect.equals(typeOf<Null>(), OptedFunction().getParamType());
Expect.equals(typeOf<Null>(), OptedFunction<Null>().getParamType());
}