mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
14 lines
174 B
C
14 lines
174 B
C
|
/* Test for PR #1833 fixes */
|
||
|
|
||
|
#define char 1
|
||
|
|
||
|
#if char && !int && L'A' - L'B' == 'A' - 'B' && L'A' == 'A'
|
||
|
#else
|
||
|
#error
|
||
|
#endif
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|