Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -fixit-at=fixit-at.c:3:1 %s -o %t.m |
Chris Lattner | 75e3606 | 2009-04-03 18:38:42 +0000 | [diff] [blame] | 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 | } |