blob: d07466db6715bae6ae467c75661da9d78805a02a [file] [log] [blame]
Anders Carlssoned4e3672009-05-31 20:21:44 +00001// RUN: clang-cc %s -emit-llvm -o %t
2
3void t1() {
4 int* a = new int;
5}
Anders Carlssond9583892009-05-31 20:26:12 +00006
7// Placement.
8void* operator new(unsigned long, void*) throw();
9
10void t2(int* a) {
11 int* b = new (a) int;
12}