blob: 2b9f70d271577eeced3ee39887202f6147d5758e [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 it is a compile-time error if a constructor declares
* a return type.
* @compile-error
* @author msyabro
* @reviewer iefremov
*/
class C {
C C();
}
main() {
try {
var c = new C();
} catch (x){}
}