view run/s/struct_25_D.d @ 1034:8a64fe59ff4e

DMD 0.158 - Compiler endless loop John C <johnch_atms@hotmail.com> 2006-05-25 news:e546c7$267o$1@digitaldaemon.com
author thomask
date Thu, 01 Jun 2006 17:50:23 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	John C <johnch_atms@hotmail.com>
// @date@	2006-05-25
// @uri@	news:e546c7$267o$1@digitaldaemon.com

module dstress.run.s.struct_25_D;

struct S2 {
	int d;
}

struct S1 {
	int a;
	long b;
	S2 c;
}

int main(){
	S1 e;
	S2 f;
	e.c = f;

	return 0;
}