blob: 04e632ea4c494eda7c319f33bf38eee030ef6dbf [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 constructorSignature:
* identier (`.' identier)? formalParameterList ;
* @description Checks that omitting a named constructor's identifier results in a compile-time error.
* @compile-error
* @author pagolubev
* @reviewer iefremov
* @reviewer rodionov
*/
class C {
C.();
}
main() {
try {
var c = new C();
} catch (x){}
}