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

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

void test(Data *d) {
  char buffer[[d length]];
  [d getData:buffer];
}