Files
Adam Hathcock a6b99abd13 Generate structs for structs and fix struct out parameter if known (#8)
* Generate structs for structs and fix struct out parameter if known

* fmt
2024-06-17 17:04:52 +01:00

18 lines
295 B
C#

namespace ProxyInterfaceSourceGeneratorTests.Source;
public struct MyStruct
{
public int Id { get; set; }
public bool TryGetMyStruct2(int i, out MyStruct2 x, double z)
{
x = default;
return true;
}
}
public struct MyStruct2
{
public int Id { get; set; }
}