run-note-fail.cpp 385 B

12345678910111213
  1. // (C) Copyright Beman Dawes 2003. Distributed under the Boost
  2. // Software License, Version 1.0. (See accompanying file
  3. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <iostream>
  5. int main()
  6. {
  7. std::cout << "example of output before a <note> line\n";
  8. std::cout << "<note>\n";
  9. std::cout << "example of output after a <note> line\n";
  10. return 1;
  11. }
粤ICP备19079148号