brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · 69fc430 Raw
6 lines · plain
1// RUN: %clang_cc1 %s -verify -fsyntax-only2 3kernel void test(global int* buf) {4  buf[0] = sizeof(void); // expected-error {{invalid application of 'sizeof' to a void type}}5}6