blob: 5b65a1c6c31d058ac1532d0e8233a8367d504313 [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:
* Interface Compositionality: T0 is an interface type
* C0<S0, ..., Sk> and T1 is C0<U0, ..., Uk> and each Si <: Ui
* @description Check that if type T0 is an interface type
* C0<S0, ..., Sk> and T1 is C0<U0, ..., Uk> and each Si <: Ui then T0 is a
* subtype of T1
* @author sgrekhov@unipro.ru
*/
/**
* @description Check that if type T0 is a subtype of a type T1, then instance
* of T0 can be be used as a return value of type T1
* @author sgrekhov@unipro.ru
*/
/*
* This test is generated from interface_compositionality_A01.dart and
* return_value_x01.dart.
* Don't modify it. If you want to change this file, change one of the files
* above and then run generator.dart to regenerate the tests.
*/
import '../../utils/common.dart';
abstract class U0 {}
abstract class U1 {}
abstract class U2 {}
abstract class S0 extends U0 {}
abstract class S1 extends U1 {}
abstract class S2 extends U2 {}
class C0<X, Y, Z> {}
C0<S0, S1, S2> t0Instance = new C0<S0, S1, S2>();
C0<U0, U1, U2> t1Instance = new C0<U0, U1, U2>();
C0<U0, U1, U2> returnValueFunc() => forgetType(t0Instance);
class ReturnValueTest {
static C0<U0, U1, U2> staticTestMethod() => forgetType(t0Instance);
C0<U0, U1, U2> testMethod() => forgetType(t0Instance);
C0<U0, U1, U2> get testGetter => forgetType(t0Instance);
}
class ReturnValueGen<X> {
X testMethod() => forgetType(t0Instance);
X get testGetter => forgetType(t0Instance);
}
main() {
C0<U0, U1, U2> returnValueLocalFunc() => forgetType(t0Instance);
returnValueFunc();
returnValueLocalFunc();
ReturnValueTest.staticTestMethod();
new ReturnValueTest().testMethod();
new ReturnValueTest().testGetter;
// Test type parameters
//# <-- NotGenericFunctionType
new ReturnValueGen<C0<U0, U1, U2>>().testMethod();
new ReturnValueGen<C0<U0, U1, U2>>().testGetter;
//# -->
}