source: CIVL/mods/dev.civl.abc/examples/shadow/out_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: 168 bytes
RevLine 
[8c31c3b]1#include <stdio.h>
2int main() {
3 int x=1;
4 {
5 int _x_1=2;
6 {
7 int _x_2=3;
8 printf("%d", _x_2);
9 }
10 printf("%d", _x_1);
11 }
12 printf("%d", x);
13}
Note: See TracBrowser for help on using the repository browser.