blob: 4e4955a96369732cbbac03fc884583cc7b0fb8cb [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 A formal constructor parameter is either a formal parameter (6.2)
* or an initializing formal. An initializing formal has the form this.id,
* where id is the name of an instance variable of the immediately enclosing class.
* @description Checks that It is a compile-time error if formal parameter of a constructor
* is declared as a constant variable.
* @compile-error
* @author msyabro
* @reviewer iefremov
*/
class C {
C.formal(p1, var p2, int p3, final p4, const p5, $()) {}
}
main() {
new C.formal(1, 2, 3, 4, 5, null);
}