blob: f23ecd99a0f5fc8847ff6c0058b186c819829ef8 [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 it is a compile-time error when there is an unpaired
* multi-line comment start token inside a documentation comment.
* @compile-error
*/
/**
/* Comment */
/*/* Nested comment **/ */
/*/* */ /* Unpaired token **/
*/
main() {
}