blob: 6680762cc6e304086e250d1cd9cb08672d8952f2 [file] [log] [blame] [edit]
// RUN: not clang-tblgen -gen-clang-attr-parsed-attr-kinds -I%p/../../include %s -o - 2>&1 | FileCheck %s
include "clang/Basic/Attr.td"
// CHECK: error: HLSLAnnotation Attribute must be lower case.
def HLSLSV_FAKE: HLSLAnnotationAttr {
let Spellings = [HLSLAnnotation<"SV_Fake">];
let Subjects = SubjectList<[ParmVar, Field]>;
let LangOpts = [HLSL];
let Documentation = [];
}