blob: 68127f6e734a8766161e33e7850c50e6fcb685c0 [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 The new expression invokes a constructor.
* newExpression:
* new type ('.' identifier)? arguments
* ;
* @description Checks that it is a compile-time error if
* a new expression does not have arguments.
* @compile-error
* @author msyabro
* @reviewer rodionov
*/
class A {
A() {}
}
main() {
try {
new A;
} catch(e) {}
}