Fix "ref" parameter (#61)

This commit is contained in:
Stef Heyenrath
2023-03-02 11:02:00 +01:00
committed by GitHub
parent af99f41dc9
commit e0ff3e4d54
10 changed files with 34 additions and 15 deletions
@@ -68,11 +68,13 @@ namespace ProxyInterfaceConsumer
public void In_Out_Ref1(in int a, out int b, ref int c)
{
b = 1;
c++;
}
public int In_Out_Ref2(in Address a, out Address b, ref Address c)
{
b = new Address();
c.HouseNumber = 11;
return 404;
}