aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp
blob: b6b3e24bd857cb80310db404984cb4b079dde898 (plain)
1
2
3
4
5
6
7
// RUN: clang -fsyntax-only -verify %s

int *use_new(int N) {
  return new int [N];
}

int std = 17;