Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaObjC/interface-tu-variable.m @ 180:680fa57a2f20
fix compile errors.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 May 2020 17:44:06 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify %s @interface XX int x; // expected-error {{cannot declare variable inside @interface or @protocol}} int one=1; // expected-error {{cannot declare variable inside @interface or @protocol}} @end @protocol PPP int ddd; // expected-error {{cannot declare variable inside @interface or @protocol}} @end @interface XX(CAT) char * III; // expected-error {{cannot declare variable inside @interface or @protocol}} extern int OK; @end @interface XX() char * III2; // expected-error {{cannot declare variable inside @interface or @protocol}} extern int OK2; @end int main( int argc, const char *argv[] ) { return x+one; }