blob: 8ecfe4a5cd1433b55834f63976895c73db567d0c [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
* constantConstructorSignature:
* const qualified formalParameterList
* ;
* @description Checks that it is a compile-time error if the semicolon at the
* end of constructor declaration is missing.
* @author iefremov
*/
class A {
const A()
//^^^^^
// [cfe] unspecified
}
//^
// [analyzer] unspecified
// [cfe] unspecified
main() {
const A();
}