xref: /third_party/glslang/Test/450.comp (revision 617a3bab)
1#version 450 core
2layout(local_size_x = 0) in; // ERROR, 0 not allowed
3
4layout(binding=10000) uniform atomic_uint;     // ERROR
5
6void main()
7{
8    shared float f;   // ERROR shared must be global
9}
10