``` ts interface Foo { hello: string; } let x: Foo = { get hello() { return "hi" }, /*$*/ } ``` Expected: Completion list at `/*$*/` is empty. Actual: Completion list contains `hello`.