blob: bd884bb749eca8df48d9590010c9aa825b1a9f50 [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 We will introduce syntax allowing you to explicitly instantiate a
/// function tear-off and a type literal for a generic class. The former for
/// consistency with constructor tear-offs, the latter to introduce in-line
/// types without needing a typedef, like we did for function types. And we do
/// both now because they share the same grammar productions.
///
/// Example:
///
/// T id<T>(T value) => value;
/// var idInt = id<int>; // Explicitly instantiated tear-off, saves on writing function types.
/// and
/// Type intList = List<int>; // In-line instantiated type literal.
///
/// @description Checks example from the Spec.
/// @author sgrekhov@unipro.ru
// SharedOptions=--enable-experiment=constructor-tearoffs
import "../../Utils/expect.dart";
Type typeOf<X>() => X;
main() {
Type intList = List<int>;
Expect.isTrue(typeOf<List<int>>() == intList);
Expect.isFalse(typeOf<List<double>>() == intList);
Expect.isFalse(typeOf<List<num>>() == intList);
}