aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/new.cpp
blob: bf959c95c851dfce47e73592dd8a4b668858d2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: clang-cc %s -emit-llvm -o %t

void t1() {
  int* a = new int;
}

// Placement.
void* operator new(unsigned long, void*) throw();

void t2(int* a) {
  int* b = new (a) int;
}

struct S {
  int a;
};

void t3() {
  int *a = new int(10);
  _Complex int* b = new _Complex int(10i);
  
  S s;
  s.a = 10;
  S *sp = new S(s);
}