blob: 1342693b68c7434fe3e4e23733d23ce1d4719fb9 [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 generic type alias is a declaration [D] of one of the following
/// forms:
/// m typedef id<X1extendsB1, ..., Xs extendsBs> = T;
/// ...
/// where [m] is derived from metadata, [T] is a type, and [S?] is a type or the
/// empty string. Let [S0] be [S?] if it is a type, otherwise let [S0] be
/// [dynamic]. The associated type of [D], call it [F], is, respectively:
/// T
/// ...
/// @description Checks that [T] should be a type.
/// @author sgrekhov@unipro.ru
class A {
static void callme<T>() { return null; }
}
typedef W2<T> = 5; //# 01: syntax error
typedef W3<T> = A.callme<T1 extends T>(); //# 02: syntax error
main() {}