repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
ignore-weakimport-method.m
blob
c68c57830a9ad191c04ee86f2f73e8860882d9bf
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
@interface foo
4
+ (void) cx __attribute__((weak_import));
5
- (void) x __attribute__((weak_import));
6
@end
7