forked from OSchip/llvm-project
13 lines
260 B
Plaintext
13 lines
260 B
Plaintext
|
// 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];
|
||
|
}
|
||
|
|