blob: cc6b22c9b7b9cd19baf736cb4878c59989ce6b5c [file] [log] [blame]
#version 450
void foo(int n, int x = 2)
{
}
void main()
{
foo(6);
foo(7);
foo(8, 3);
}