Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Foo3.cs
T
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

14 lines
220 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ProxyInterfaceSourceGeneratorTests.Source;
public class Foo3
{
public Bar3 Weird()
{
throw new NotImplementedException();
}
}
public class Bar3 { }