Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
74391b48b4791cded373683a3baf67314f358d50
/
.
/
test
/
SemaObjC
/
protocol-id-test-2.m
blob: 3b4adcfb5b6f176da29d7e8949c08659326dd8d4 [
file
] [
log
] [
blame
]
// RUN: clang -verify %s
@protocol
P
@end
@interface
INTF
<
P
>
-
(
void
)
IMeth
;
@end
@implementation
INTF
-
(
void
)
IMeth
{
[(
id
<
P
>)
self
Meth
];
}
// expected-warning {{method '-Meth' not found (return type defaults to 'id')}}
@end