blob: 314dbfcf16921bec9e3b4efd3e4500fd00cc8307 [file] [log] [blame]
Douglas Gregorb81c1702009-04-27 20:06:05 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/ext_vector.h -fsyntax-only -verify %s
Douglas Gregorb81c1702009-04-27 20:06:05 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -emit-pch -o %t %S/ext_vector.h
Douglas Gregorb81c1702009-04-27 20:06:05 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
7
8int test(float4 f4) {
9 return f4.xy; // expected-error{{float2}}
Douglas Gregorb81c1702009-04-27 20:06:05 +000010}