Files
clang-p2996/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp
Daniel Dunbar 81fff1c358 Spell clang-cc correctly.
llvm-svn: 82582
2009-09-22 22:30:59 +00:00

8 lines
104 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
int *use_new(int N) {
return new int [N];
}
int std = 17;