brintos

brintos / llvm-project-archived public Read only

0
0
Text · 382 B · 5f2a2e3 Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify=notsycl -Wno-unused %s2// RUN: %clang_cc1 -fsyntax-only -fsycl-is-host -verify=sycl -Wno-unused %s3// RUN: %clang_cc1 -fsyntax-only -fsycl-is-device -verify=sycl -Wno-unused %s4 5// sycl-no-diagnostics6void foo() {7  // notsycl-error@+1{{expected '(' for function-style cast or type construction}}8  __builtin_sycl_unique_stable_name(int);9}10