• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //~ Copyright 2005 Redshift Software, Inc.
2 //~ Distributed under the Boost Software License, Version 1.0.
3 //~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
4 
5 #include <boost/static_assert.hpp>
6 
7 template <int N>
foo()8 int foo()
9 {
10     BOOST_STATIC_ASSERT( N < 2 );
11 
12     return N;
13 }
14 
main()15 int main()
16 {
17     return foo<5>();
18 }
19