Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@ -0,0 +1,42 @@
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;
}
}