diff options
Diffstat (limited to 'libcxx/test')
-rw-r--r-- | libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp b/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp index dfa1b36cf21..1833e69840d 100644 --- a/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp +++ b/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp @@ -60,10 +60,10 @@ struct A int main() { test_has_not_nothrow_destructor<void>(); - test_has_not_nothrow_destructor<A>(); test_has_not_nothrow_destructor<Abstract>(); test_has_not_nothrow_destructor<NotEmpty>(); + test_is_nothrow_destructible<A>(); test_is_nothrow_destructible<int&>(); test_is_nothrow_destructible<Union>(); test_is_nothrow_destructible<Empty>(); |