Fix typo in #ifdef; leave tests commented out b/c gcc 4.8 harks on them.

llvm-svn: 274882
This commit is contained in:
Marshall Clow 2016-07-08 16:59:54 +00:00
parent 352cfe41cd
commit bc3b1f3b7b
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ int main()
// LWG 2560 -- postpone this test until bots updated
// test_is_not_constructible<void()> ();
// #if TEST_STD_VERS > 11
#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
#endif
}