You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.142
Former-commit-id: 7467d4b717762eeaf652d77f1486dd11ffb1ff1f
This commit is contained in:
parent
e52655b4dc
commit
0abdbe5a7d
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
@@ -6,6 +6,11 @@ class X
|
||||
{
|
||||
arg = s.ToString ();
|
||||
}
|
||||
|
||||
while (true && Call (out string s2))
|
||||
{
|
||||
arg = s2.ToString ();
|
||||
}
|
||||
}
|
||||
|
||||
static bool Call (out string s)
|
||||
|
20
mcs/tests/test-fixed-01.cs
Normal file
20
mcs/tests/test-fixed-01.cs
Normal 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];
|
||||
}
|
||||
}
|
||||
}
|
@@ -1 +1 @@
|
||||
de627d70ca0c8397bb021d757723e1de33485608
|
||||
40c2d585df3aa012f8646c4cc723ef60fa4ca87f
|
Reference in New Issue
Block a user