Renamed over long file name.

[SVN r30007]
This commit is contained in:
John Maddock
2005-07-12 12:55:27 +00:00
parent f7531de553
commit 1b9f71f4dd
3 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,18 @@
//~ Copyright 2005 Redshift Software, Inc.
//~ Distributed under the Boost Software License, Version 1.0.
//~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
#include <boost/static_assert.hpp>
template <int N>
int foo()
{
BOOST_STATIC_ASSERT( N < 2 );
return N;
}
int main()
{
return foo<5>();
}