blob: 5c76d58bdfaa74a75cdf33b43c39c61a992fae87 [file] [log] [blame]
// Copyright (c) 2021, 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 A named constructor tear-off expression of one of the forms above
/// evaluates to a function value which could be created by tearing off a
/// corresponding constructor function, which would be a static function defined
/// on the class denoted by [C], with a fresh name here represented by adding
/// [$tearoff]:
///
/// static C name$tearoff<typeParams>(params) => C<typeArgs>.name(args);
///
/// @description Checks constructor tear-off expression for generic class.
/// @author iarkh@unipro.ru
// SharedOptions=--enable-experiment=constructor-tearoffs
import "../../Utils/expect.dart";
class C<T> {
C(int i, T t) {}
}
main() {
Expect.isTrue(C.new is C Function<X>(int i, X d));
Expect.isTrue(C<int>.new is C<int> Function(int i, int d));
Expect.isTrue(((C.new)<int>) is C<int> Function(int i, int d));
checkType(checkIs<C Function<X>(int i, X d)>, true, C.new);
checkType(checkIs<C<int> Function(int i, int d)>, true, C<int>.new);
checkType(checkIs<C<int> Function(int i, int d)>, true, ((C.new)<int>));
}