Skip to content

Auto-completion does not work properly in Template Specialization #2620

@lh123

Description

@lh123

example

#include <stdint.h>
template <class T>
struct Test {
    uint32_t operator()() {
        uint32_t test = 0; //auto-completion work properly in here
        return test;
    }
};

template <>
struct Test<float> {
    uint32_t operator()() {
        uint32_t //Auto-completion does not work properly when I type uint32_t
        return test;
    }
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    Language ServicebugfixedCheck the Milestone for the release in which the fix is or will be available.

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions