未验证 提交 c2879554 编写于 作者: Y Youssef Victor 提交者: GitHub

Update ReturnStatementHighlighterTests.cs

上级 409480ac
......@@ -319,6 +319,28 @@ int P
}");
}
[Fact, Trait(Traits.Feature, Traits.Features.KeywordHighlighting)]
public async Task TestInInit()
{
await TestAsync(
@"class C
{
int P
{
get
{
return 0;
return 0;
}
init
{
{|Cursor:[|return|]|};
[|return|];
}
}
}");
}
[Fact, Trait(Traits.Feature, Traits.Features.KeywordHighlighting)]
public async Task TestInAdder()
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册