1struct Bad { 2 layout(offset = 5) int x; 3} bad; 4 5void main() { 6 bad.x = 5; 7 sk_FragColor.r = half(bad.x); 8} 9