public class TestConstructor
{
    public int a = -1;

    public TestConstructor(int initial_value)
    {
        a = initial_value;
    }
}