blob: b732e2f97346817845914163663f78c16b830704 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -fsyntax-only -fixit-at=fixit-at.c:3:1 %s -o %t.m
Chris Lattner75e36062009-04-03 18:38:42 +00002// RUN: clang-cc -verify %t.m
3
4@protocol X;
5
6void foo() {
7 <X> *P; // should be fixed to 'id<X>'.
8}