You've already forked linux-packaging-mono
Imported Upstream version 3.8.0
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
This commit is contained in:
@@ -81,6 +81,7 @@ public struct AStruct {
|
||||
public string s;
|
||||
public byte k;
|
||||
public IntPtr j;
|
||||
public int l;
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public int foo (int val) {
|
||||
@@ -106,6 +107,11 @@ public struct AStruct {
|
||||
public IntPtr invoke_return_intptr () {
|
||||
return j;
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public void invoke_mutate () {
|
||||
l = 5;
|
||||
}
|
||||
}
|
||||
|
||||
public class GClass<T> {
|
||||
@@ -953,6 +959,11 @@ public class Tests : TestsBase, ITest2
|
||||
return 42;
|
||||
}
|
||||
|
||||
public void invoke_out (out int foo, out int[] arr) {
|
||||
foo = 5;
|
||||
arr = new int [10];
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public static void exceptions () {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user