1uniform half4 colorGreen;
2
3// We don't inline functions with out parameters. (skia:11326)
4inline void outParameter(inout half4 x) {
5    x *= x;
6}
7
8half4 main(float2 coords) {
9    half4 c = colorGreen;
10    outParameter(c);
11    return c;
12}
13