blob: ddc2d1a5decd22c479ae0429a824cd8c4350e9b0 [file] [log] [blame]
Brian Silverman50051a92018-08-04 20:43:41 -07001//~ 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
7template <int N>
8int foo()
9{
10 BOOST_STATIC_ASSERT( N < 2 );
11
12 return N;
13}
14
15int main()
16{
17 return foo<5>();
18}