blob: 0fa9599a7918a6b4cc6bc7e0b0ac888a1ade2f40 [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 Test equality of function and methods tearoffs.
/// https://github.com/dart-lang/language/issues/1712
///
/// @description Checks equality of instantiated generic static methods tearoffs
/// @author sgrekhov@unipro.ru
// SharedOptions=--enable-experiment=constructor-tearoffs
import "../../Utils/expect.dart";
class C {
static X foo1<X>(X x) => x;
static X foo2<X>(X x) => x;
}
main() {
<X>() {
var v1 = C.foo1<X>;
var v2 = C.foo1<X>;
var v3 = C.foo2<X>;
Expect.equals(v1, v2);
Expect.notEquals(v1, v3);
}<int>();
}