1 // RUN: %clang_cc1 -verify %s 2 3 void test1(image1d_t *i) {} // expected-error{{pointer to type '__read_only image1d_t' is invalid in OpenCL}} 4 5 void test2(image1d_t i) { 6 image1d_t ti; // expected-error{{type '__read_only image1d_t' can only be used as a function parameter}} 7 image1d_t ai[] = {i, i}; // expected-error{{array of '__read_only image1d_t' type is invalid in OpenCL}} 8 i=i; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and '__read_only image1d_t')}} 9 i+1; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and 'int')}} 10 &i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}} 11 *i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}} 12 } 13 14 image1d_t test3() {} // expected-error{{declaring function return value of type '__read_only image1d_t' is not allowed}} 15