From c70057bf6025a07cc550c7c48138817be3b77fdb Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 27 Jul 2017 21:35:16 +0300 Subject: [PATCH] Add another mp_quote_trait test case --- test/mp_quote_trait.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/mp_quote_trait.cpp b/test/mp_quote_trait.cpp index dd0018c..b762a5e 100644 --- a/test/mp_quote_trait.cpp +++ b/test/mp_quote_trait.cpp @@ -27,6 +27,16 @@ int main() BOOST_TEST_TRAIT_TRUE((std::is_same, int[]>)); } + { + using Q = mp_quote_trait; + + BOOST_TEST_TRAIT_TRUE((std::is_same, void*>)); + BOOST_TEST_TRAIT_TRUE((std::is_same, int(*)[]>)); + + BOOST_TEST_TRAIT_TRUE((std::is_same, void*>)); + BOOST_TEST_TRAIT_TRUE((std::is_same, int(*)[]>)); + } + { using Q = mp_quote_trait;