summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/parameters-04.vert
blob: 2196de3868e3a7869579109106e81e240481a078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// [config]
// expect_result: fail
// glsl_version: 1.10
//
// [end config]

/* FAIL - formal parameter lacks a name
 */
float a(float x, float )
{
  return x;
}