summaryrefslogtreecommitdiff
path: root/test/PCH/cxx-dependent-sized-ext-vector.cpp
blob: 29c06f7cc797ddd8a13b316498fdcd10897c74a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -std=c++11 -emit-pch %s -o %t
// RUN: %clang_cc1 -std=c++11 -include-pch %t -verify %s

#ifndef HEADER_INCLUDED

#define HEADER_INCLUDED

template<typename T, int N>
using vec = T __attribute__((ext_vector_type(N)));

#else

void test() {
  vec<float, 2> a;  // expected-error@-5 {{zero vector size}}
  vec<float, 0> b; // expected-note {{in instantiation of template type alias 'vec' requested here}}
}

#endif