21 lines · cpp
1// RUN: %clang_cc1 -triple i386-pc-win32 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft -std=c++112// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \3// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xhip \4// RUN: -triple amdgcn-amd-amdhsa -target-cpu gfx12005// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \6// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xhip \7// RUN: -triple spirv64-amd-amdhsa8// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \9// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xcuda \10// RUN: -triple nvptx6411 12struct __declspec(layout_version(19)) S {};13enum __declspec(layout_version(19)) E {}; // expected-warning{{'layout_version' attribute only applies to classes}}14int __declspec(layout_version(19)) I; // expected-warning{{'layout_version' attribute only applies to classes}}15typedef struct T __declspec(layout_version(19)) U; // expected-warning{{'layout_version' attribute only applies to classes}}16auto z = []() __declspec(layout_version(19)) { return nullptr; }; // expected-warning{{'layout_version' attribute only applies to classes}}17 18struct __declspec(layout_version(18)) X {}; // expected-error{{'layout_version' attribute parameter 18 is out of bounds}}19struct __declspec(layout_version(20)) Y {}; // expected-error{{'layout_version' attribute parameter 20 is out of bounds}}20struct __declspec(layout_version) Z {}; // expected-error{{attribute takes one argument}}21