1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 int *use_new(int N) {
4   return new int [N];
5 }
6 
7 int std = 17;
8