Changeset 325
- Timestamp:
- Jun 11, 2003, 11:10:57 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/456/simple.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r324 r325 1 static int fileglobal = 2; 2 int realglobal = 1; 1 /* step this code and check that everything is visible and step ordre is ok. */ 2 3 /* Check that both these are viewable in the 'program monitor'. */ 4 static int fileglobal = 2; 5 int realglobal = 1; 6 7 /* Enum test: check that these are ok and the value is stringified */ 8 enum ENM { enmA, enmB, enmC}; 9 static enum ENM enmfileglobal = enmA; 10 enum ENM enmrealglobal = enmB; 11 12 /* Enum test: check that these are ok and the value is stringified */ 13 enum { enmAnon, enmBnon, enmCnon} 14 enmAnonymous; 3 15 4 16 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.