blob: 092e2c9d9bfb7a09a03c0ec24844df3e52b61c0c [file] [log] [blame]
Douglas Gregor14c22f22009-04-22 22:18:58 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/nonvisible-external-defs.h -fsyntax-only -verify %s
Douglas Gregor14c22f22009-04-22 22:18:58 +00003
4// Test with pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00005// RUN: %clang_cc1 -emit-pch -o %t %S/nonvisible-external-defs.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
Douglas Gregor14c22f22009-04-22 22:18:58 +00007
8int g(int, float); // expected-error{{conflicting types}}
9
Andy Gibbsb42f2002013-04-17 08:06:46 +000010// expected-note@nonvisible-external-defs.h:10{{previous declaration}}