[Nice-commit] Nice/testsuite/compiler/statements/variables scoping.testsuite,NONE,1.1
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-09-16 11:28:03
|
Update of /cvsroot/nice/Nice/testsuite/compiler/statements/variables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3468/testsuite/compiler/statements/variables Added Files: scoping.testsuite Log Message: Testcases for multiple definitions of local variables and method parameters. --- NEW FILE: scoping.testsuite --- /// FAIL int x = 0; if (x > 1) { int /*/// FAIL HERE */ x = 1; x++; } /// FAIL bug /// Toplevel void foo(int x) { int /*/// FAIL HERE */ x = 2; x++; } |