summaryrefslogtreecommitdiffstats
path: root/test/SemaObjCXX/vla.mm
blob: 9c6fc54f817ad7eb9ba708cc525e460fc28792f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -fsyntax-only -verify %s

@interface Data
- (unsigned)length;
- (void)getData:(void*)buffer;
@end

void test(Data *d) {
  char buffer[[d length]]; // expected-error{{variable length arrays are not permitted in C++}}
  [d getData:buffer];
}

OpenPOWER on IntegriCloud