T4Immutable icon indicating copy to clipboard operation
T4Immutable copied to clipboard

Inconsistent builder accessibility

Open bboyle1234 opened this issue 5 years ago • 0 comments

With the following declaration:

    [ImmutableClass(Options = ImmutableClassOptions.IncludeOperatorEquals | ImmutableClassOptions.ExcludeToString | ImmutableClassOptions.ExcludeWith, ConstructorAccessLevel = ConstructorAccessLevel.Internal, BuilderAccessLevel = BuilderAccessLevel.Internal)]
    public sealed partial class IndicativeIndexRollover {

We get the following issue. The ToBuilder method accessibility needs to match the builder class accessibility.

image

bboyle1234 avatar Sep 11 '19 04:09 bboyle1234