1
0
forked from boostorg/core

Add tests for function types

This commit is contained in:
Peter Dimov
2021-10-05 05:04:56 +03:00
parent 36cec9a5cc
commit 01bd23df5d

View File

@ -105,6 +105,18 @@ int main()
TEST(void*);
TEST(void const* volatile*);
TEST(void());
TEST(int(float, A, B*));
TEST(void(*)());
TEST(void(&)());
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
TEST(void(&&)());
#endif
TEST(A[]);
TEST(A const[]);
TEST(A volatile[]);