Newer
Older
zweic / tests / 4 / term-ident.zwei
@ajaggi ajaggi on 26 Dec 2005 139 bytes Added some test cases
  1. // Ident
  2. class foo {
  3. Int y;
  4. Null bar() {
  5. Int x = 0;
  6. y; // 1/1 failure of clause 1
  7. x; // success
  8. }
  9. }
  10.  
  11. 1