a6b99abd13
* Generate structs for structs and fix struct out parameter if known * fmt
14 lines
220 B
C#
14 lines
220 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ProxyInterfaceSourceGeneratorTests.Source;
|
|
|
|
public class Foo3
|
|
{
|
|
public Bar3 Weird()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|
|
public class Bar3 { }
|