aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag')
-rw-r--r--tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag b/tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag
new file mode 100644
index 00000000..026d8476
--- /dev/null
+++ b/tests/spec/glsl-es-1.00/compiler/shaders/struct2.frag
@@ -0,0 +1,16 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+//
+// # NOTE: Config section was auto-generated from file
+// # NOTE: 'glslparser.tests' at git revision
+// # NOTE: 6cc17ae70b70d150aa1751f8e28db7b2a9bd50f0
+// [end config]
+
+struct s {
+ int i = 1.0; // struct members cannot be initialized at the time of structure declaration
+} s1;
+
+void main()
+{
+}