[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / property-getter-dot-syntax.m
blobd5875a3dad30816f7349dddeb350feea12d9a421
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 @protocol NSObject
4 - (void *)description;
5 @end
7 int main(void)
9         id<NSObject> eggs;
10         void *eggsText= eggs.description;