view nocompile/offsetof_03.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents e5bbb877feb9
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 17

module dstress.nocompile.offsetof_03;

union MyUnion{
	int a;
	int b;	
}

int main(){
	MyUnion u;

	assert(u.a.offsetof >= 0);
	assert(u.b.offsetof >= 0);
	assert(u.a.offsetof != u.b.offsetof);

	return 0;
}