Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/MixedVisibility.cs
T
Stef Heyenrath d340c6af7c Only generate setters and getters for public properties (#47)
* Only generate setters and getters for public properties

* .
2022-12-13 19:18:30 +01:00

6 lines
165 B
C#

namespace ProxyInterfaceSourceGeneratorTests.Source;
public class MixedVisibility
{
public string Foo { get; protected set; } //<- this will generate bad code
}