public static bool testMethod()
            {
                StructsTestClass_33_Struct s = new StructsTestClass_33_Struct();

                StructsTestClass_33_Struct.Nested nn = new StructsTestClass_33_Struct.Nested();
                nn.i = 10;
                s.n  = nn; //value copy

                if (s.n.i == nn.i)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
	        public static bool testMethod()
	        {
                StructsTestClass_33_Struct s = new StructsTestClass_33_Struct();
                StructsTestClass_33_Struct.Nested nn = new StructsTestClass_33_Struct.Nested();
		        nn.i = 10;
		        s.n = nn;  //value copy

		        if(s.n.i == nn.i)
			        return true;
		        else
			        return false;
	        }