Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Completion on out in local function impedes with typing #22253

Closed
jcouv opened this issue Sep 21, 2017 · 3 comments
Closed

Completion on out in local function impedes with typing #22253

jcouv opened this issue Sep 21, 2017 · 3 comments
Assignees
Milestone

Comments

@jcouv
Copy link
Member

jcouv commented Sep 21, 2017

I tried to add an out parameter to a local function and Intellisense forced a completion of a type name instead of out.

image

FYI @agocke @Pilchie for triage

@dpoeschl
Copy link
Contributor

The OutKeywordRecommender doesn't seem to be kicking in here. Can you take a look?

@dpoeschl dpoeschl added this to the 15.5 milestone Sep 21, 2017
@dpoeschl
Copy link
Contributor

dpoeschl commented Sep 25, 2017

Smaller standalone repro:

using System;

class C
{
    void M()
    {
        void F($$)
    }
}

@chborl
Copy link
Contributor

chborl commented Sep 28, 2017

Issue fixed by #17447 which was merged into master with #22050.
Tests added in #22388

@chborl chborl closed this as completed Sep 28, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants