Tests: Update expected results
This commit is contained in:
@@ -97,8 +97,10 @@ namespace Il2CppTests.TestSources
|
||||
public void MethodWithInRefOut(in int a, ref int b, out int c) {
|
||||
c = default;
|
||||
} // 0x1034DA60-0x1034DA70
|
||||
public ref float MethodWithRefReturnType() => default; // 0x1034DA70-0x1034DA70
|
||||
public ref Test MethodWithGenericAndClassRefs<T>(ref T argGeneric, ref int argValueType, ref Test argClass) => default;
|
||||
public ref float MethodWithRefReturnType() => ref _refReturnTypeForMethodWithRefReturnType; // 0x1034DA70-0x1034DA70
|
||||
private ref float _refReturnTypeForMethodWithRefReturnType; // Dummy field
|
||||
public ref Test MethodWithGenericAndClassRefs<T>(ref T argGeneric, ref int argValueType, ref Test argClass) => ref _refReturnTypeForMethodWithGenericAndClassRefs;
|
||||
private ref Test _refReturnTypeForMethodWithGenericAndClassRefs; // Dummy field
|
||||
}
|
||||
|
||||
[Obsolete] // 0x1000DD10-0x1000DD40
|
||||
|
||||
Reference in New Issue
Block a user