This test fails with absent: true and absent: false. The reason is that CSharpSyntaxContext.IsGlobalStatementContext changes after one character is typed.
[Fact, Trait(Traits.Feature, Traits.Features.KeywordRecommending)]
public async Task TestNotBetweenUsings()
{
var source = @"using Goo;
$$
using Bar;";
await VerifyWorkerAsync(source, absent: true, Options.Script);
}
Relates to (but precedes) #32187