t_2_018.cpp 743 B

12345678910111213141516171819202122
  1. /*=============================================================================
  2. Boost.Wave: A Standard compliant C++ preprocessor library
  3. http://www.boost.org/
  4. Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost
  5. Software License, Version 1.0. (See accompanying file
  6. LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. =============================================================================*/
  8. // Check if regression reported by ticket #1752 has been fixed
  9. //R #line 17 "t_2_018.cpp"
  10. //R "__FILE__ is defined"
  11. #ifndef __FILE__
  12. "No __FILE__"
  13. #else
  14. "__FILE__ is defined"
  15. #endif
  16. //H 10: t_2_018.cpp(14): #ifndef
  17. //H 11: t_2_018.cpp(14): #ifndef __FILE__: 1
  18. //H 10: t_2_018.cpp(18): #endif