Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
719770dcfcb3987e8a2377dcca97955301445eb5
/
.
/
test
/
Index
/
Inputs
/
complete-pch.h
blob: ddf5253c134d45b01fb9c1a09454937f4c03b4f5 [
file
] [
log
] [
blame
]
Douglas Gregor
719770d
2010-04-06 17:30:22 +0000
[
diff
] [
blame^
]
1
@interface
A
2
-
(
int
)
instanceMethod1
:(
int
)
x
;
3
+
(
int
)
classMethod1
:(
double
)
d
;
4
@end
5
6
@interface
B
7
-
(
int
)
instanceMethod2
:(
int
)
x
;
8
+
(
int
)
classMethod2
:(
float
)
f
;
9
@end
10