1234567891011121314151617181920212223 |
- //===----------------------------------------------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is dual licensed under the MIT and the University of Illinois Open
- // Source Licenses. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- // struct nothrow_t {
- // explicit nothrow_t() = default;
- // };
- // extern const nothrow_t nothrow;
- #include <new>
- int main(int, char**) {
- std::nothrow_t x = std::nothrow;
- (void)x;
- return 0;
- }
|