view run/InExpression_13.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_13;

int main(){
	int value = 1;
	char[] key = "eins";
	int[char[]] array;
	
	array[key]=value;
	int* ptr = "zwei" in array;
	
	assert(ptr is null);

	return 0;
}