testcase for recent checkin

From-SVN: r31656
This commit is contained in:
Mike Stump 2000-01-27 23:19:47 +00:00
parent e905ac8a1a
commit 0d5b6c4bda

View File

@ -0,0 +1,9 @@
// Special g++ Options: -Wshadow
int
main(int i) {
for(int i=1; i < 3; i++); // WARNING - shadows parm
for(int i=1; i < 3; i++); // WARNING - shadows parm
for(int j=1; j < 3; j++);
for(int j=1; j < 3; j++);
}