blob: d576673691c889c28766aa9b15d3959c197d2be2 [file]
#version 430 core
#extension GL_EXT_shared_memory_block : enable
layout(local_size_x = 8) in;
shared first
{
int a;
};
shared second
{
int b;
};
void notMain()
{
a = 2;
b = 3;
}