1#version 130
2
3void main()
4{
5  float foo;
6  float undefined;
7
8  foo = undefined;
9}
10
11