blob: bcb2d655f317e59cdfe3f23d18e007e9a71a4e3a [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 It is a compile-time error if any default values are specified in
/// the signature of function type alias.
/// @description Checks that a compile error is produced when a default value is
/// specified for one of the required arguments in a function type alias.
/// @author iefremov, sgrekhov@unipro.ru
typedef F(var a, var b, var c, var z = null);
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
}