blob: 3b53d1aaaa7662d446bd36e79172ce68d05ae0c2 [file] [log] [blame]
layout(location = 0) in float stageInput;
in foo {
layout(location = 1) float stageInputInBlock;
};
void main() {
stageInput = 5;
stageInputInBlock = 6;
}
/*%%*
cannot modify pipeline input variable 'stageInput'
cannot modify pipeline input variable 'stageInputInBlock'
*%%*/