blob: b732e2f97346817845914163663f78c16b830704 [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>'.
}