blob: ce84b126eaba81e766eec54c07d6b8336c1b4f69 [file] [log] [blame]
// Copyright (c) 2011, 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 type alias declares a name for a type expression.
/// <typeAlias> ::=<metadata> typedef <typeIdentifier> <typeParameters>?‘=’<type>
/// ‘;’
/// | <metadata> typedef <functionTypeAlias>
/// <functionTypeAlias> ::= <functionPrefix> <formalParameterPart> ‘;’
/// <functionPrefix> ::= <type>? <identifier>
/// @description Checks that formalParameterList in the typedef declaration
/// cannot include a semicolon.
/// @author kaigorodov
typedef F<T1; T2>();
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
}