blob: b9b77ffc9f3a8ac15a6a9d703db4cd88afdd39a9 [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 An unconditional ordinary method invocation i has the form
* o.m(a1, ..., an, xn+1 : an+1, ..., xn+k : an+k).
* @description Checks static invocations, when o denotes a class in the
* current scope. Argument list may have comma on the end.
* @author msyabro
*/
class C {
static f(p1, p2, p3) {}
}
main() {
C.f(1, 2, 3, );
}