view run/const_01.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 3414705c41ac
children a33ad7189d21
line wrap: on
line source

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2004-08-10
// @uri@	news://cfa5h3$1hf0$1@digitaldaemon.com
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:1326

module dstress.run.const_01;

struct MyStruct{
	int i;
}

const int a = 0;
const MyStruct b = { a };
const MyStruct c = b;

int main(){
	return 0;
}