1 /*============================================================================= 2 Boost.Wave: A Standard compliant C++ preprocessor library 3 http://www.boost.org/ 4 5 Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost 6 Software License, Version 1.0. (See accompanying file 7 LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 =============================================================================*/ 9 10 //O -DTEST 11 #if defined(TEST) 12 #define ABC() 1 13 #endif 14 15 //R #line 16 "t_1_002.cpp" 16 ABC() //R 1 17 18 //H 10: t_1_002.cpp(11): #if 19 //H 11: t_1_002.cpp(11): #if defined(TEST): 1 20 //H 10: t_1_002.cpp(12): #define 21 //H 08: t_1_002.cpp(12): ABC()=1 22 //H 10: t_1_002.cpp(13): #endif 23 //H 00: t_1_002.cpp(16): ABC(), [t_1_002.cpp(12): ABC()=1] 24 //H 02: 1 25 //H 03: 1 26