blob: 9c5258dbcb743e6bb1bd6a6833a8b2dd52bf8451 [file] [log] [blame]
Douglas Gregor558cb562009-04-02 01:08:08 +00001// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
Douglas Gregora3a83512009-04-01 23:51:29 +00002
3/* This is a test of the various code modification hints that are
Douglas Gregorfe057ac2009-04-02 03:20:30 +00004 provided as part of warning or extension diagnostics. All of the
5 warnings will be fixed by -fixit, and the resulting file should
6 compile cleanly with -Werror -pedantic. */
7
Douglas Gregora3a83512009-04-01 23:51:29 +00008struct s; // expected-note{{previous use is here}}
9
10union s *s1; // expected-error{{use of 's' with tag type that does not match previous declaration}}