blob: 4747b1735e1a889c09f785cd2ffa0f3e22438d55 [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 classDefinition:
* metadata abstract? class identifier typeParameters? (superclass mixins?)? interfaces?
* '{' (metadata classMemberDefinition)* '}'
* @description Checks that it is a compile-time error if an abstract class declaration
* is missing both opening and closing curly brackets.
* @compile-error
* @author msyabro
* @reviewer iefremov
*/
abstract class A
main() {
try {
A a = new A();
} catch (e) {}
}