summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/special-macro-redefine-function.slang
blob: cca38f39f0f808cba6786a2661638ef7cbc3a552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//DIAGNOSTIC_TEST:SIMPLE:-E

// 
// Check replacing __FILE__
// 

#define __FILE__(x) "Is" x

__FILE__("Anybody")
__FILE__(There)

#undef __FILE__

__FILE__