Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
e53c069bdaf0683f52ecfaf45ccfc816fdb4288f
/
.
/
test
/
SemaObjC
/
method-def-1.m
blob: 2d5f92fcbc1ee435a25271e666f7a859327007a0 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only %s
@interface
foo
-
(
int
)
meth
;
@end
@implementation
foo
-
(
int
)
meth
{
return
[
self meth
];
}
@end