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
/
Rewriter
/
metadata-test-2.m
blob
3ffda5809c5330635037d3c7c01a31beb7821fa9
1
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
2
3
typedef struct _NSPoint {
4
float x;
5
float y;
6
} NSPoint;
7
8
@interface Intf
9
- (void) MyMeth : (NSPoint) Arg1;
10
@end
11
12
@implementation Intf
13
- (void) MyMeth : (NSPoint) Arg1{}
14
@end
15