blob: 6664f94a9278c2a46ccab435846cc32645ded112 [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 If F is not a function type, the static type of i is Dynamic.
/// Otherwise the static type of i is the declared return type of F.
/// @note no longer in spec:
/// Let Ti be the static type of ai, i from 1 to n + k. It is a static warning
/// if F is not a supertype of (T1, ..., Tn, [Tn+1 xn+1, ..., Tn+k xn+k]) -> ⊥.
/// @description Checks that it is a compile error if F is not a supertype
/// of (T1, ..., Tn, [Tn+1 xn+1, ..., Tn+k xn+k]) -> ⊥.
/// @author msyabro
main() {
var f = (int p1, int p2) {};
f("", "");
// ^
// [analyzer] unspecified
// [cfe] unspecified
}