12345678910111213141516171819 |
- //===----------------------------------------------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- // test unexpected_handler
- #include <exception>
- void f() {}
- int main()
- {
- std::unexpected_handler p = f;
- }
|