view norun/s/struct_26_A.d @ 1095:67d6d7538065

[Issue 285] Struct method null pointer assert has line number of "0" Jarrett Billingsley <jarrett.billingsley@gmail.com> 2006-08-12 news:bug-285-3@http.d.puremagic.com/issues/
author thomask
date Mon, 14 Aug 2006 11:37:17 +0000
parents
children daef239f37cf
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Jarrett Billingsley <jarrett.billingsley@gmail.com>
// @date@	2006-08-12
// @uri@	news:bug-285-3@http.d.puremagic.com/issues/

// __DSTRESS_TORTURE_BLOCK__ -release
// __DSTRESS_ELINE__ 21

module dstress.norun.s.struct_26_A;

struct S{
	void dummy(){
	}
}

int main(){
	S* s = null;
	s.dummy();
	return 0;
}