blob: 1ac11fb9c2bdb2b746020cf1e298d51b3f43be58 [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 factory is a constructor prefaced by the built-in identifier factory.
* factoryConstructorSignature:
* factory qualified ('.' identifier)? formalParameterList
* ;
* @description Checks that it is a compile-time error if a factory constructor declaration
* is missing the formal parameter list.
* @author iefremov
* @reviewer rodionov
* @compile-error
*/
class C {
factory C{}
}
main() {
try {
new C();
} catch (x){}
}