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

10 lines
181 B
C#

namespace ProxyInterfaceSourceGeneratorTests.Source
{
public partial interface IFoo2 : IFoo2Base { }
public partial interface IFoo2Base
{
int Weird2();
}
}