[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaOpenCLCXX / template-opencl-types.clcpp
blobf217a1e553b765ef389ba161ca60919542365e50
1 // RUN: %clang_cc1 %s -pedantic -verify -fsyntax-only
3 template<typename T>
4 T global_variable; // expected-error{{the '__global clk_event_t' type cannot be used to declare a program scope variable}}
6 clk_event_t global_event; // expected-error{{the '__global clk_event_t' type cannot be used to declare a program scope variable}}
8 template<typename T>
9 void templ() {
10   T loc;
11   // expected-error@-1{{type '__private __read_only image1d_t' can only be used as a function parameter in OpenCL}}
12   // expected-error@-2{{declaring variable of type '__private half' is not allowed}}
13   // expected-error@-3{{the event_t type can only be used with __private address space qualifier}}
16 void foo() {
17   templ<image1d_t>(); // expected-note{{in instantiation of function template specialization 'templ<__read_only image1d_t>' requested here}}
18   templ<half>(); // expected-note{{in instantiation of function template specialization 'templ<half>' requested here}}
19   templ<__local event_t>(); // expected-note{{in instantiation of function template specialization 'templ<__local event_t>' requested here}}
21   image1d_t img; // expected-error{{type '__private __read_only image1d_t' can only be used as a function parameter in OpenCL}}
22   half h; // expected-error{{declaring variable of type '__private half' is not allowed}}
23   __local event_t e; // expected-error{{the event_t type can only be used with __private address space qualifier}}
25   (void) global_variable<clk_event_t>; // expected-note{{in instantiation of variable template specialization 'global_variable' requested here}}