blob: 478c8ebe830f71e577c3c2e10fe3b81d90c4790e [file] [log] [blame]
#version 450
shared int foo[1337];
void myfunc()
{
foo[0]=13;
}
void main()
{
myfunc();
}