Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
defaultArgs.comp
blob: cc6b22c9b7b9cd19baf736cb4878c59989ce6b5c [
file
] [
edit
]
#version 450
void
foo
(
int
n
,
int
x
=
2
)
{
}
void
main
()
{
foo
(
6
);
foo
(
7
);
foo
(
8
,
3
);
}