source: CIVL/mods/dev.civl.abc/examples/shadow/shadow2.c

main
Last change on this file was 8c31c3b, checked in by Stephen Siegel <siegel@…>, 3 years ago

Fixed bug and added new test in ShadowRemover.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5733 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 156 bytes
RevLine 
[8c31c3b]1#include <stdio.h>
2int main() {
3 int x=1;
4 {
5 int x=2;
6 {
7 int x=3;
8 printf("%d", x);
9 }
10 printf("%d", x);
11 }
12 printf("%d", x);
13}
Note: See TracBrowser for help on using the repository browser.