view run/ushort_06.d @ 1532:94502f22d55e

fixed ModuleInfo dependency
author thomask
date Fri, 27 Apr 2007 17:35:45 +0000
parents a2f3b4e1bfe5
children
line wrap: on
line source

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

module dstess.run.ushort_06;

int main(){
	ushort u;
	assert( u.alignof >= u.sizeof );
	assert( ushort.alignof >= u.sizeof );
	return 0;
}