blob: bd129ea18a93557565dcf38a039c3089d29db8e3 [file] [log] [blame]
Douglas Gregor61cac2b2009-04-27 20:06:05 +00001// Test this without pch.
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/ext_vector.h -fsyntax-only -verify %s
Douglas Gregor61cac2b2009-04-27 20:06:05 +00003
4// Test with pch.
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00005// RUN: %clang_cc1 -emit-pch -o %t %S/ext_vector.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
Douglas Gregor61cac2b2009-04-27 20:06:05 +00007
8int test(float4 f4) {
9 return f4.xy; // expected-error{{float2}}
Douglas Gregor61cac2b2009-04-27 20:06:05 +000010}