Skip to content

Commit

Permalink
Another edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Jul 26, 2021
1 parent 097dbdb commit 22fc0f9
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public class Initializers : BasicClass
longParameter____________________________________________________________________________
) { }

// this may change, see #372
public WithParameters(string parameter)
: base(
longParameter____________________________________________________________________________
Expand All @@ -84,6 +85,19 @@ public class Initializers : BasicClass
{
WithBody();
}

public LongParametersWithEmptyBody(string parameter, bool anotherParameter_________________) { }

public LongParametersWithEmptyBody(string parameter, bool anotherParameter__________________)
{ }

public LongInitializerWithEmptyBody() : base(parameter, anotherParameter___________________) { }

public LongInitializerWithEmptyBody() : base(parameter, anotherParameter__________________) { }

public LongInitializerWithEmptyBody()
: base(parameter______________, anotherParameter___________________________________________)
{ }
}

public class Exactly100
Expand Down

0 comments on commit 22fc0f9

Please sign in to comment.