[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / ParserHLSL / semantic_parsing.hlsl
blob34df1805c5a957b969e827e221a99834d4f4fd0f
1 // RUN: %clang_cc1 -triple dxil-pc-shadermodel6.0-compute -x hlsl -ast-dump -o - %s -verify
3 // expected-error@+1 {{expected HLSL Semantic identifier}}
4 void Entry(int GI : ) { }
6 // expected-error@+1 {{unknown HLSL semantic 'SV_IWantAPony'}}
7 void Pony(int GI : SV_IWantAPony) { }