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

1