view run/char_06.d @ 374:f87ba6507260

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

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

// check that char is unsigned

module dstress.run.char_06;

int main(){
	char a = '\xFB';
	ubyte b = 0xFBu;
	
	void* d = &a;
	void* e = &b;

	assert(*(cast(byte*)(e)) == *(cast(byte*)(d)));

	return 0;
}