aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/new3.C
blob: d0eab73cf5a3720e551f19023570a48c5e453687 (plain)
1
2
3
4
5
6
7
8
// Test that new-expressions at file scope work properly.

struct A { static char* p; };

int i = 1;
char* A::p = new char[i];

void foo() {}