view run/t/typeinfo_03_C.d @ 1514:891196dcfc3a

[Issue 1068] stack corruption with mixins and function templates Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl> 2007-03-19 http://d.puremagic.com/issues/show_bug.cgi?id=1068
author thomask
date Wed, 25 Apr 2007 17:46:32 +0000
parents 6666662e4363
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;
}