[Nice-commit] Nice/testsuite/compiler/typing void.testsuite,1.2,1.3
Brought to you by:
bonniot
From: <ar...@us...> - 2003-05-21 15:55:37
|
Update of /cvsroot/nice/Nice/testsuite/compiler/typing In directory sc8-pr-cvs1:/tmp/cvs-serv27785/F:/nice/testsuite/compiler/typing Modified Files: void.testsuite Log Message: Don't typecheck the return type of a short syntax void function. Index: void.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/typing/void.testsuite,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** void.testsuite 29 Apr 2003 11:17:06 -0000 1.2 --- void.testsuite 21 May 2003 15:55:33 -0000 1.3 *************** *** 49,50 **** --- 49,59 ---- void f() = doSomethingAndReturnAStatusBoolean(); + + /// PASS + /// Toplevel + void f() = null; + + /// PASS + /// Toplevel + void foo() = bar(); + ?String bar() = "abc"; |