blob: 74b225c422c607504722ee612701f8c3cde39738 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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;
}