X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=parsetest%2Fimplicit.c;h=85d3500d772025c46274f616b6e07d9033fec857;hb=865a32171b7f00582d58c01fad1cca77b9c95a6a;hp=88af067894dfb62160705976c77b2ea3d0baff78;hpb=5e546b7cbd6d1691e2ce8b9d209f9a481ae061cc;p=cparser diff --git a/parsetest/implicit.c b/parsetest/implicit.c index 88af067..85d3500 100644 --- a/parsetest/implicit.c +++ b/parsetest/implicit.c @@ -3,7 +3,8 @@ void test1() { } void test2() { - for(int i = rand(); i < 20; ++i) + int i; + for(i = rand(); i < 20; ++i) break; }