blob: f30fda711b75ed84bd1ae96b61281686ca8fdaac [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 Documentation comments are comments that begin with the tokens ///
/// or '/''*''*'.
/// @description Checks that slash and two asterisk characters separated by
/// whitespace do not make a documentation comment start token (or any other kind
/// of comment).
/// @author vasya
/
//^
// [analyzer] unspecified
// [cfe] unspecified
**
//^
// [analyzer] unspecified
// [cfe] unspecified
* Documentation comment
// ^
// [analyzer] unspecified
// [cfe] unspecified
*/
//^
// [analyzer] unspecified
// [cfe] unspecified
main() {
}