blob: 0f0c9e2506fce73e4822faf4362d0ec2e2f3a67a [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 the nesting of documentation comments is allowed and
* there doesn't need to be whitespace between adjacent start/end tokens.
* @author rodionov
*/
/**
Main comment
/**
Sub comment
*/
End of main comments
/** /* /** Deeply nested comment **/**/**/
/***//***/
*/
main() {
}