blob: 49392ca2fef5d12fa7bf3820c1dc7ff9344fdc92 [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
10// expected-note{{previous declaration}}