DEBSOURCES
Skip Quicknav
sources / glslang / 16.1.0-1 / Test / struct.error.frag
1234567891011121314
#version 460 struct A { float x; }; A test() { return A(1.0); } void main() { test().z; // A.z does not exist, causes a crash }