blob: 9c323689f68f0fa0ee130462cf78788b9a9cb666 [file] [log] [blame]
/*
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
*/
void main()
{
int i, j, k;
float f;
i = j, k, f;
i = (j = k, f = 1.0); // float cannot be assigned to int
gl_Position = vec4(1);
}