view nocompile/s/set_01_A.d @ 1270:660f9196b52a

partial review
author thomask
date Sat, 23 Dec 2006 12:58:47 +0000
parents 602e7b841889
children
line wrap: on
line source

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

// Porting: C#

// __DSTRESS_ELINE__ 14

module dstress.nocompile.s.set_01_A;

class C{
	int i;

	int X{
		set{
			i = value;
		}
	}
}