brintos

brintos / llvm-project-archived public Read only

0
0
Text · 386 B · 6680762 Raw
12 lines · plain
1// RUN: not clang-tblgen -gen-clang-attr-parsed-attr-kinds -I%p/../../include %s -o - 2>&1 | FileCheck %s2 3include "clang/Basic/Attr.td"4 5// CHECK: error: HLSLAnnotation Attribute must be lower case.6def HLSLSV_FAKE: HLSLAnnotationAttr {7  let Spellings = [HLSLAnnotation<"SV_Fake">];8  let Subjects = SubjectList<[ParmVar, Field]>;9  let LangOpts = [HLSL];10  let Documentation = [];11}12