new.cpp revision ed4e367f8e27d2c700efdaff9412f2bf83ddba00
1// RUN: clang-cc %s -emit-llvm -o %t
2
3void t1() {
4  int* a = new int;
5}
6