blob: 758f10112b41a01b972e1237e3e350f4fdbe58b1 [file] [log] [blame]
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00001// RUN: clang -fsyntax-only -verify %s
2/* Test attempt to redefine 'id' in an incompatible fashion. */
3
4typedef int id; // expected-error {{typedef redefinition with different types}}
5
6id b;