• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 // Tests error reporting for missing #endif
11 
12 //E t_2_010.cpp(22): error: detected at least one missing #endif directive
13 #if 1
14 #if 0
15 #endif
16 
17 //H 10: t_2_010.cpp(13): #if
18 //H 11: t_2_010.cpp(13): #if 1: 1
19 //H 10: t_2_010.cpp(14): #if
20 //H 11: t_2_010.cpp(14): #if 0: 0
21 //H 18: boost::wave::preprocess_exception
22