blob: b7c44f7dce0077fb8301c5254d5ae9cf6a74ad26 [file] [log] [blame]
/*
* Copyright (c) 2019, 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 it is a compile error if type alias is wrongly
* placed
* @author sgrekhov@unipro.ru
*/
class C {
static void s() {
typedef void F1(String s); //# 01: compile-time error
}
void m() {
typedef void F2(String s); //# 02: compile-time error
}
}
test() {
typedef void F3(String s); //# 03: compile-time error
}
main() {
typedef void F4(String s); //# 04: compile-time error
}