Newer
Older
zweic / tests / four / statement-printInt.zwei
@glproj03 glproj03 on 28 Dec 2005 181 bytes wicked cool test file added: script.sh
// PrintInt

class foo {}

class PrintIntTest {
    Null foo() {
        printInt(new foo()); // 1/1 failure of clause 1 (type must be Int)
        printInt(2); //success
    }
}

1