1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 02:29:32 +00:00

added testcase for issue #760

This commit is contained in:
mrdudz 2020-07-13 15:13:22 +02:00
parent bec140143b
commit 36ff372149

12
test/misc/bug760.c Normal file
View File

@ -0,0 +1,12 @@
/* bug#760 - Error when using macros as pragma arguments */
#include <stdlib.h>
#define BANK "PRG0"
#pragma rodata-name(push, BANK)
int main(void)
{
return EXIT_SUCCESS;
}