dotnet/roslyn
Incorrect smart indent anchor following `do` keyword
Aberta
#50.063 aberto em 18 de dez. de 2020
Area-IDEBugDeveloper CommunityIDE-Formatterhelp wanted
Métricas do repositório
- Stars
- (20.414 estrelas)
- Métricas de merge de PR
- (Mesclagem média 6d 17h) (256 fundiu PRs em 30d)
Description
Version Used: 16.8.3
🔗 Originally filed as AB#1259025 🔗 This is also the root cause of AB#1289599 🔗 This is also the root cause of AB#1348257 🔗 This is also the root cause of AB#1469007
Steps to Reproduce:
class Test
{
void Method()
{
do$$
}
}
Press Enter after the do keyword.
Expected Behavior:
class Test
{
void Method()
{
do
$$
}
}
Actual Behavior:
class Test
{
void Method()
{
do
$$
}
}