Newer
Older
zweic / tests / four / term-ident.zwei
@glproj03 glproj03 on 28 Dec 2005 139 bytes wicked cool test file added: script.sh
// Ident 
class foo {
    Int y;
    Null bar() {
        Int x = 0;
        y; // 1/1 failure of clause 1
        x; // success
    }
}

1