blob: fb2b56a771f6a6df6c3a1157a9e4d3df3ff4fd1d [file] [log] [blame]
John Kessenich69968412014-08-13 06:37:59 +00001#version 450 core
John Kessenichdd561732017-06-08 10:13:15 -06002layout(local_size_x = 0) in; // ERROR, 0 not allowed
3void main()
4{
5 shared float f; // ERROR shared must be global
6}