From acedeb11a7824fd1209c3d08fcc7a529080a7158 Mon Sep 17 00:00:00 2001 From: Tobias Schwinger Date: Tue, 16 May 2006 13:37:14 +0000 Subject: [PATCH] introduces test case for is_sequence< int<0> > [SVN r33979] --- test/is_sequence.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/is_sequence.cpp b/test/is_sequence.cpp index 88d28b5..c718a56 100644 --- a/test/is_sequence.cpp +++ b/test/is_sequence.cpp @@ -12,6 +12,7 @@ // $Revision$ #include +#include #include #include #include @@ -25,6 +26,7 @@ template< typename T > struct std_vector MPL_TEST_CASE() { MPL_ASSERT_NOT(( is_sequence< std_vector > )); + MPL_ASSERT_NOT(( is_sequence< int_<0> > )); MPL_ASSERT_NOT(( is_sequence< int > )); MPL_ASSERT_NOT(( is_sequence< int& > )); MPL_ASSERT_NOT(( is_sequence< UDT > ));