[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / va-method.m
blob78d9367819b512fcc21f5e294586b3ed0d9afd24
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
3 #include <stdarg.h>
5 @interface NSObject @end
6 @interface XX : NSObject @end
8 @implementation XX
9 - (void)encodeValuesOfObjCTypes:(const char *)types, ... {
10    va_list ap;
11    va_start(ap, types); 
12    while (*types) ;
13    va_end(ap);
16 @end