yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

T. FoleyOverhaul the preprocessor (#1849)0389546b0

master
279 B8 linesraw
1//DIAGNOSTIC_TEST:SIMPLE:-E
2
3// GCC: <source>:1:9: error: '##' cannot appear at either end of a macro expansion. 
4// Clang: <source>:1:21: error: '##' cannot appear at start of macro expansion
5// Old Slang outputs Hello ## There;
6#define POUND_POUND ##
7
8Hello POUND_POUND There;