view run/t/typeinfo_03_C.d @ 1449:6666662e4363

[Issue 1089] Unsafe pointer comparison in TypeInfo_Pointer.compare Madeleine Freudenberg <madou@madou.org> 2007-04-01 http://d.puremagic.com/issues/show_bug.cgi?id=1089
author thomask
date Wed, 04 Apr 2007 20:29:33 +0000
parents
children b5c0842014ef
line wrap: on
line source

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

// @author@	Madeleine Freudenberg <madou@madou.org>
// @date@	2007-04-01
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1089
// @desc@	[Issue 1089] Unsafe pointer comparison in TypeInfo_Pointer.compare

module dstress.run.t.typeinfo_03_C;

int main(){
	auto t = typeid(int*);

	int* a = new int;
	int* b = new int;
	*a = -10;
	*b = int.max;

	if(-1 < t.compare(a, b)){
		assert(0);
	}
	if(t.compare(b, a) < 1){
		assert(0);
	}

	return 0;
}