blob: 8530c74cb192b5e5f485b29689778da8c6256dcb [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 For an expression of the form e<typeArgs>, which is not followed
/// by an argument list (that would turn it into a generic function invocation),
/// the meaning of e<typeArgs> depends on the expression e:
///
/// - If e denotes a generic class, mixin or type alias declaration (which means
/// that e is an identifier, possibly a qualified identifier, which resolves to
/// the class, mixin or type alias declaration), then e<typeArgs> is a type
/// literal. If followed by .id then that id must denote a constructor, which
/// can then be either torn off or invoked. If followed by == or != or any
/// "stop-token", the expression evaluates to a Type object.
///
/// @description Checks that it is a compile error to tear off a static member
/// of an instantiated generic class
/// @author sgrekhov@unipro.ru
// SharedOptions=--enable-experiment=constructor-tearoffs
class C<T> {
static void foo1<X>(X x) {}
}
typedef CAlias<T> = C<T>;
main() {
var c1 = C<int>.foo1<int>;
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
var c2 = CAlias<int>.foo1<int>;
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}