t_1_002.cpp 798 B

12345678910111213141516171819202122232425
  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. //O -DTEST
  9. #if defined(TEST)
  10. #define ABC() 1
  11. #endif
  12. //R #line 16 "t_1_002.cpp"
  13. ABC() //R 1
  14. //H 10: t_1_002.cpp(11): #if
  15. //H 11: t_1_002.cpp(11): #if defined(TEST): 1
  16. //H 10: t_1_002.cpp(12): #define
  17. //H 08: t_1_002.cpp(12): ABC()=1
  18. //H 10: t_1_002.cpp(13): #endif
  19. //H 00: t_1_002.cpp(16): ABC(), [t_1_002.cpp(12): ABC()=1]
  20. //H 02: 1
  21. //H 03: 1