view nocompile/InExpression_15.d @ 180:da000f026b76

1) added InExpression tests 2) added passed/failed explanations to the summary page
author thomask
date Tue, 07 Dec 2004 12:04:08 +0000
parents
children f87ba6507260
line wrap: on
line source

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

// only associative arrays support the InExpression

module dstress.nocompile.InExpression_15;

class MyClass{
	char c = 'c';
}

int main(){
	MyClass object = new MyClass();

	void* ptr = 'c' in object;

	return 0;
}