Newer
Older
zweic / tests / four / statement-do.zwei
@glproj03 glproj03 on 28 Dec 2005 170 bytes wicked cool test file added: script.sh
// Do
class DoTest {
    Null foo() {
        Null k = null;
        2 + k; // 1/1 failure of clause 1 (incorrectly typed expression)
        2 + 2; // success
    }
}

1