blob: 86b4a48a2d40da0d4c88680bb199ad402c27e7c7 [file] [log] [blame]
void functionLeft() {
float x = functionLeft * 2;
}
void functionRight() {
float x = 2 * functionRight;
}
void functionBoth() {
float x = functionBoth * functionBoth;
}
struct S {
float x;
} s;
void structLeft() {
float x = s * 2;
}
void structRight() {
float x = 2 * s;
}
void structBoth() {
float x = s * s;
}
sampler2D smp;
void samplerLeft() {
float x = smp * 2;
}
void samplerRight() {
float x = 2 * smp;
}
void samplerBoth() {
float x = smp * smp;
}
int array[1];
void arrayLeft() {
float x = array * 2;
}
void arrayRight() {
float x = 2 * array;
}
void arrayBoth() {
float x = array * array;
}
/*%%*
type mismatch: '*' cannot operate on '<INVALID>', 'int'
type mismatch: '*' cannot operate on 'int', '<INVALID>'
type mismatch: '*' cannot operate on '<INVALID>', '<INVALID>'
type mismatch: '*' cannot operate on 'S', 'int'
type mismatch: '*' cannot operate on 'int', 'S'
type mismatch: '*' cannot operate on 'S', 'S'
type mismatch: '*' cannot operate on 'sampler2D', 'int'
type mismatch: '*' cannot operate on 'int', 'sampler2D'
type mismatch: '*' cannot operate on 'sampler2D', 'sampler2D'
type mismatch: '*' cannot operate on 'int[1]', 'int'
type mismatch: '*' cannot operate on 'int', 'int[1]'
type mismatch: '*' cannot operate on 'int[1]', 'int[1]'
*%%*/