view nocompile/InExpression_15.d @ 1606:ebff718ff18b

Fix tests from #3. Thanks Don!
author Christian Kamm <kamm incasoftware de>
date Mon, 13 Apr 2009 13:47:03 +0200
parents f87ba6507260
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;
}