Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
75e3606728e30e00b3be0779243b55305e167828
/
.
/
test
/
FixIt
/
fixit-objc.m
blob: baef2337c10c4d08073599f2c8698002712db3a9 [
file
] [
log
] [
blame
]
Chris Lattner
75e3606
2009-04-03 18:38:42 +0000
[
diff
] [
blame^
]
1
// RUN: clang-cc -fsyntax-only -fixit-at=fixit-at.c:3:1 %s -o %t.m &&
2
// RUN: clang-cc -verify %t.m
3
4
@protocol
X
;
5
6
void
foo
()
{
7
<
X
>
*
P
;
// should be fixed to 'id<X>'.
8
}