1// Can't convert argument of type "void \* uniform" to type "varying float" for function call argument.
2
3float bar(float a, float b);
4
5export uniform int foo(uniform int x[], uniform int i[]) {
6    float (*fptr)(float, float) = bar;
7//CO    bar(0,1,2);
8    fptr(NULL, 1);
9}
10