Newer
Older
zweic / tests / 4 / statement-printChar.zwei
@ajaggi ajaggi on 26 Dec 2005 184 bytes Added some test cases
// PrintChar

class foo{}

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

0