blob: 85ce6443bc2ea6a7fd8f6e4342a606b44f82373c [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 default values are specified for several parameters
* in a function type alias.
* @author iefremov
* @reviewer rodionov
* @compile-error
*/
import "../../../Utils/expect.dart";
typedef f(var a, var b = "", var c = main, var z = null);
main() {
try {
Expect.isFalse(_(){} is f);
} catch(x) {}
}