view nocompile/InExpression_15.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents da000f026b76
children
line wrap: on
line source

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

// only associative arrays support the InExpression

// __DSTRESS_ELINE__ 18

module dstress.nocompile.InExpression_15;

class MyClass{
	char c = 'c';
}

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

	void* ptr = 'c' in object;

	return 0;
}