Keep the source location of the selector in ObjCMessageExpr.
[clang.git] / test / SemaObjC / ignore-weakimport-method.m
blobf80312ac06f35ad5f74d25c69a7dc9ec13ba1c37
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
3 @interface foo 
4 + (void) cx __attribute__((weak_import));
5 - (void) x __attribute__((weak_import));
6 @end