class StoreSomethingPar<A>
{
	A something;

	A get()
	{
		return something;
	}

	void set(A some)
	{
		something = some;
	}
}