blob: 1e2ba012c8f2bb9160d058918bb3a943139994a3 [file] [log] [blame]
Nate Begemand47d4f52008-01-25 05:34:48 +00001// RUN: clang %s -verify -fsyntax-only
2
Nate Begeman213541a2008-04-18 23:10:10 +00003typedef __attribute__(( ext_vector_type(4) )) float float4;
Nate Begemand47d4f52008-01-25 05:34:48 +00004
5float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };