[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCUDA / amdgpu-windows-vectorcall.cu
blob7636572f69833c4e7b7f3633864e00eec47dc4c0
1 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -aux-triple x86_64-pc-windows-msvc -fms-compatibility -fcuda-is-device -fsyntax-only -verify %s
3 __cdecl void hostf1();
4 __vectorcall void (*hostf2)() = hostf1; // expected-error {{cannot initialize a variable of type 'void ((*))() __attribute__((vectorcall))' with an lvalue of type 'void () __attribute__((cdecl))'}}