linux-packaging-mono/mcs/tests/gtest-initialize-10.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

42 lines
435 B
C#

using System;
class Foo
{
public int P { get; set; }
}
class Y
{
public static int Main ()
{
Foo foo = new Foo ();
foo.P = 1;
if (!Do (foo))
return 1;
Console.WriteLine ("OK");
return 0;
}
static bool Do (Foo f)
{
f = new Foo () {
P = f.P
};
if (f.P != 1)
return false;
Foo f2 = new Foo ();
f2.P = 9;
f2 = new Foo () {
P = f2.P
};
if (f2.P != 9)
return false;
return true;
}
}