Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
variadic.comp
blob: 44648084ef9394507d68dd1468e1f9c1c3846e12 [
file
] [
edit
]
#version 450
void
foo
(
int
n
,
...)
{
}
void
main
()
{
foo
(
7
);
foo
(
8
,
43
);
foo
(
9
,
42.0
,
21.05
);
}