view run/align_11.d @ 1538:5530980c0d49

[Issue 1203] Cannot create Anonclass in loop Frank Benoit <benoit@tionex.de> 2007-04-30 http://d.puremagic.com/issues/show_bug.cgi?id=1203
author thomask
date Mon, 07 May 2007 05:21:43 +0000
parents b8c0195059d9
children ec5e144583ea
line wrap: on
line source

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

// @author@	Robert Atkinson <Robert.Atkinson@gmail.com>
// @date@	2005-05-04
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3882

module dstress.run.align_11;

version(X86) version = type1;
version(X86_64) version = type1;

version(type1){
	version(linux) version=testA; // c compiler: gcc
	version(Windows) version=testA; // c compiler: dmc
}else{
	static assert(0);
}

align(1) struct S{
	byte a;
	byte b;
}

int main(){
	S s;
	version(testA){
		assert(&s.a-&s.b==-1);
	}else{
		pragma(msg, "no C alignment data present");
		static assert(0);
	}
	return 0;
}