freebsd-dev/test/SemaObjC/ignore-weakimport-method.m
2009-06-02 17:58:47 +00:00

8 lines
149 B
Objective-C

// RUN: clang-cc -fsyntax-only -verify %s
@interface foo
+ (void) cx __attribute__((weak_import));
- (void) x __attribute__((weak_import));
@end