Newer
Older
zweic / tests / 4 / statement-printChar.zwei
@ajaggi ajaggi on 26 Dec 2005 184 bytes Added some test cases
  1. // PrintChar
  2.  
  3. class foo{}
  4.  
  5. class PrintCharTest {
  6. Null foo() {
  7. printChar(new foo()); // 1/1 failure of clause 1 (type must be Int)
  8. printChar(2); //success
  9. }
  10. }
  11.  
  12. 0