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