llvm-svn: 274651
This commit is contained in:
Manman Ren 2016-07-06 18:24:53 +00:00
parent bc2cfc2291
commit 78fa242ec2
1 changed files with 7 additions and 7 deletions

View File

@ -103,11 +103,11 @@ int main()
test_is_not_constructible<AbstractDestructor> ();
// LWG 2560 -- postpone this test until bots updated
test_is_not_constructible<void()> ();
#if TEST_STD_VER > 11
test_is_not_constructible<void() const> ();
test_is_not_constructible<void() volatile> ();
test_is_not_constructible<void() &> ();
test_is_not_constructible<void() &&> ();
#endif
// test_is_not_constructible<void()> ();
// #if TEST_STD_VERS > 11
// test_is_not_constructible<void() const> ();
// test_is_not_constructible<void() volatile> ();
// test_is_not_constructible<void() &> ();
// test_is_not_constructible<void() &&> ();
// #endif
}