view run/InExpression_19.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents da000f026b76
children
line wrap: on
line source

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

module dstress.run.InExpression_19;

int main(){
	int[char[]] array;

	void* ptr = "key" in array;

	assert(ptr is null);

	return 0;
}