Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/FooNotNullable.cs
T
Adam Hathcock c71fc31132 Rhino required fixes (#9)
* add fixes for structs

* handle null non-nullables to nullable nulls

* test fix

* add enum test even if it's gross looking

* generate nullable adapt when needed

* fix adapter tests

* don't generate static events

* fmt

* mark for release
2024-06-18 13:04:08 +01:00

15 lines
238 B
C#

namespace ProxyInterfaceSourceGeneratorTests.Source;
#nullable disable
public class FooNotNullable
{
public void Test(FooEnum z = FooEnum.Y, IEnumerable<string> v = null) { }
}
public enum FooEnum
{
X,
Y
}
#nullable restore