[PowerPC][NFC] Cleanup PPCCTRLoopsVerify pass
[llvm-project.git] / libcxx / test / std / language.support / support.dynamic / nothrow_t.pass.cpp
blob3a6231329f096467900ae886c9d2206d62b7dd4f
1 //===----------------------------------------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 // struct nothrow_t {
11 // explicit nothrow_t() = default;
12 // };
13 // extern const nothrow_t nothrow;
15 #include <new>
18 int main(int, char**) {
19 std::nothrow_t x = std::nothrow;
20 (void)x;
22 return 0;