]> git.gag.com Git - fw/sdcc/blob - support/regression/tests/bug-1351710.c
20147a568cf1ae62a6284270b44fd9a2f7302cff
[fw/sdcc] / support / regression / tests / bug-1351710.c
1 /*
2    bug-1351710.c
3 */
4
5 #include <testfwk.h>
6
7 const char *
8 const_str(void)
9 {
10 return "A"
11
12
13
14 /* just for testing, actually nop */
15 #pragma save
16
17
18
19
20
21 "B";
22 #pragma restore
23 }
24
25 void
26 testBug(void)
27 {
28   const char *str = const_str();
29 }