blob: d3b47b4079e948dfc262020c02d6bba72047adf2 [file] [log] [blame]
/*
* Copyright (c) 2020, 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 It is an error if the body of a method, function, getter, or
* function expression with a potentially non-nullable return type may complete
* normally.
*
* @description It is an error if the body of a method, function, getter, or
* function expression with a potentially non-nullable return type may complete
* normally. Test <T extends Object>
* @author sgrekhov@unipro.ru
* @issue 40396
*/
// SharedOptions=--enable-experiment=non-nullable
// Requirements=nnbd-strong
class A {}
class C<T extends Object> {
T mTest() {}
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
T get gTest {}
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
T test<T extends Object>() {}
//^^^^
// [analyzer] unspecified
// [cfe] unspecified
main() {
C<A> c = new C<A>();
c.mTest();
c.gTest;
test<A>();
}