Fixed multi-dimension argument / return type (#55)

* Fixed multi dimension array arguments

* .

* .

* .

* ,
This commit is contained in:
Stef Heyenrath
2023-02-21 19:10:03 +01:00
committed by GitHub
parent 196db037ab
commit 65d1d801ce
8 changed files with 36 additions and 8 deletions
@@ -85,6 +85,12 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
b = 1;
}
public double[,] Out_MultiDimensionIssue54(out double[,] x)
{
x = new double[0, 0];
return x;
}
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2)
where T1 : struct
where T2 : class, new()