Imported Upstream version 5.18.0.142

Former-commit-id: 7467d4b717762eeaf652d77f1486dd11ffb1ff1f
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-09 08:20:59 +00:00
parent e52655b4dc
commit 0abdbe5a7d
1547 changed files with 93792 additions and 47893 deletions

View File

@@ -4,6 +4,12 @@ using System;
public static class B {
public static void Main ()
{
int lo = 1;
Bar (in lo);
}
public static void Bar (in int arg)
{
}

View File

@@ -6,6 +6,11 @@ class X
{
arg = s.ToString ();
}
while (true && Call (out string s2))
{
arg = s2.ToString ();
}
}
static bool Call (out string s)

View File

@@ -0,0 +1,20 @@
// Compiler options: -unsafe -langversion:latest
unsafe class C
{
public static void Main ()
{
fixed (int* p = new Fixable ()) {
System.Console.WriteLine (*p);
System.Console.WriteLine (p [2]);
}
}
struct Fixable
{
public ref int GetPinnableReference ()
{
return ref (new int[] { 1, 2, 3 })[0];
}
}
}

View File

@@ -1 +1 @@
de627d70ca0c8397bb021d757723e1de33485608
40c2d585df3aa012f8646c4cc723ef60fa4ca87f