blob: baef2337c10c4d08073599f2c8698002712db3a9 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -fixit-at=fixit-at.c:3:1 %s -o %t.m &&
// RUN: clang-cc -verify %t.m
@protocol X;
void foo() {
<X> *P; // should be fixed to 'id<X>'.
}