You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the latest 0.26.7 in the playground that reverted #1010, there are some inconsistencies in the intentation of the method call and primarily the end parenthesis ).
publicclassClassName{publicvoidTest(){varfoo=new{Bars=newstring[0]};foo.Bars.Select(
s =>s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()).ToArray();foo.Select(
s =>s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()).ToArray();}}
Expected behavior:
Either
foo.Bars.Select(
s =>s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()).ToArray();
Or
foo.Bars.Select(
s =>s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()).ToArray();
The text was updated successfully, but these errors were encountered:
Using the latest 0.26.7 in the playground that reverted #1010, there are some inconsistencies in the intentation of the method call and primarily the end parenthesis
)
.Input:
Output:
Expected behavior:
Either
Or
The text was updated successfully, but these errors were encountered: