Skip to content

Extension unexpectedly giving no info on variables used within a scope in module files #15

@pinecone69

Description

@pinecone69

Tested in Visual Studio 2022 version 17.11.5

Example:

module module_A;

struct A {
    int x;
    int y;
}

void function(out A a) {
    a.x = 4; // No info on the contents of struct A are provided when writing 'a.'
    a.y = 2; 
}

A b; // Info on the contents of struct A are provided when writing 'b.'

Removing module module_A; from the top of the file is required to see info on the contents of struct A within a scope.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions