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

class foo{}

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

0