1#version 450 core 2layout(local_size_x = 0) in; // ERROR, 0 not allowed 3void main() 4{ 5 shared float f; // ERROR shared must be global 6} 7