blob: 452846e90b9d8e905c81c6c175a5063d003a3c72 [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 A multi-line comment begins with the token '/*' and ends with the
* token '*/'. Everything between '/*' and '*/' must be ignored by the Dart
* compiler unless the comment is a documentation comment. Comments may nest.
* MULTI LINE COMMENT :
* '/''*' (MULTI LINE COMMENT | ~ '*''/')* '*''/'
* ;
* @description Checks that slash and asterisk characters separated by
* whitespace do not make a multi-line comment start token.
* @compile-error
* @author vasya
*/
/ * Comment
main() {
}