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

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

int std = 17;