14 lines · plain
1// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -fsyntax-only %s -verify2 3// expected-no-diagnostics4 5// Test that we have consistent behaviour for comma parsing. Namely:6// - a single trailing comma is allowed after any parameter7// - a trailing comma is not required8 9[RootSignature("CBV(b0, flags = DATA_VOLATILE,), DescriptorTable(Sampler(s0,),),")]10void maximum_commas() {}11 12[RootSignature("CBV(b0, flags = DATA_VOLATILE), DescriptorTable(Sampler(s0))")]13void minimal_commas() {}14