summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/ignore-weakimport-method.m
blob: d71cebf2c79a6e2252c0a9d393d5f329aebbdcac (plain)
1
2
3
4
5
6
// RUN: %clang_cc1  -fsyntax-only -verify %s
@interface foo 
+ (void) cx __attribute__((weak_import));
- (void) x __attribute__((weak_import));
@end