view run/invariant_11.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 96cadd0da1ae
children a33ad7189d21
line wrap: on
line source

// @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
// @date@	2004-10-22
// @uri@	news://clbr09$uc6$1@digitaldaemon.com
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:2140

// the name function name "_invariant" isn't forbidden (dmd-0.104 documentation)
module dstress.run.invariant_11;

class MyClass{
        void _invariant(){
                assert(0);
        }

	invariant{
		assert(0);
	}
}

int main(){
        MyClass c = new MyClass();
        return 0;
}