blob: a78674985c98069f922191b7ced70813e40df84f [file] [log] [blame]
Douglas Gregor14c22f22009-04-22 22:18:58 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/nonvisible-external-defs.h -fsyntax-only -verify %s
Douglas Gregor14c22f22009-04-22 22:18:58 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -emit-pch -o %t %S/nonvisible-external-defs.h
Douglas Gregor14c22f22009-04-22 22:18:58 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
7
8int g(int, float); // expected-error{{conflicting types}}
9
10// expected-note{{previous declaration}}