Files
ispc/tests_errors/signed-unsigned.ispc
Matt Pharr 6b9b7437ed Parse and then mostly ignore "signed" qualifier.
Just issue errors if both "signed" and "unsigned" are specified,
or if "signed" is applied to a non-int type.
2011-11-29 21:41:04 -08:00

6 lines
109 B
Plaintext

// Error: Illegal to apply both "signed" and "unsigned" qualifiers
int foo() {
signed unsigned int x;
}