diff options
Diffstat (limited to 'src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c')
-rw-r--r-- | src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c b/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c new file mode 100644 index 00000000000..37b895a4237 --- /dev/null +++ b/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c @@ -0,0 +1,4 @@ +#define paste(x,y) x ## y +paste(1,2) +paste(1,000) +paste(identifier,2) |