blob: baef2337c10c4d08073599f2c8698002712db3a9 [file] [log] [blame]
Chris Lattner75e36062009-04-03 18:38:42 +00001// 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
6void foo() {
7 <X> *P; // should be fixed to 'id<X>'.
8}