microsoft / microsoft/vscode-cpptools

Incorrect member inaccessible error in friend class/function when class is in separate C++ 20 module

Aperta
#8,450 1 commento 1 reazione 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

bug Language Service Visual Studio
Lingua principale
TypeScript
Stelle
6.2k
Fork
1.7k
Merge medio
14h 46m
PR unite (30g)
61

Descrizione

Bug type: Language Service

Describe the bug

  • OS and Version: Windows 11 x64 22000.318
  • VS Code Version: 1.62.3
  • C/C++ Extension Version: v1.7.1
  • MSVC Version: 14.30.30705, x64 (in VS 2022)
  • Other extensions you installed (and if the issue persists after disabling them):
    • Was using the Meson extension and various others, however the issue exists with all other extensions disabled.

When using C++20 modules, the language server gives a false positive member inaccessible error when using a friend class or friend function to access a private member of a class if the class is in another C++20 module.

Using a single project, single folder workspace (not tested on others but probably will have the same result)

#6302 is relevant to this issue, but separate. Module import IntelliSense is not required for the extension to detect imported types from other modules (via IFC files).

Steps to reproduce

  1. Create a new workspace directory with the code samples and C/C++ configuration below.

    • The important part is to have a class in one module m, and have a friend class or friend function of that class in another module that imports m and accesses a private member of an instance of that class.
  2. Compile m.cpp (just to have the IFC file)

    cl.exe /c /std:c++20 /experimental:module /interface m.cpp
    
  3. Observe the following:

    • IntelliSense correctly does not produce errors for the C++20 module syntax and correctly identifies the class Test (can be verified with Go to Definition)
    • However, the use of t.privateMember does produce an error, even though the code compiles fine:
      member "Test::privateMember" (declared at line 5 of module "m" ("<...>\m.cpp")) is inaccessible
      

Expected behavior
This error is a false-positive. The code for both files compiles and links fine. Accessing the private member should work because int main() is a friend function of class Test.

Code sample and logs

  • Code sample

    m.cpp:

    export module m;
    
    export class Test {
    private:
        int privateMember;
        friend int main();
    };
    

    u.cpp:

    import m;
    
    int main()
    {
      Test t;
      t.privateMember = 0;
      return 0;
    }
    
  • Configurations in c_cpp_properties.json

    .vscode/c_cpp_properties.json:

    {
        "configurations": [
            {
                "name": "Win32",
                "includePath": [
                    "${workspaceFolder}/**"
                ],
                "defines": [
                    "_DEBUG",
                    "UNICODE",
                    "_UNICODE"
                ],
                "windowsSdkVersion": "10.0.19041.0",
                "compilerPath": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.30.30705\\bin\\Hostx64\\x64\\cl.exe",
                "cStandard": "c17",
                "cppStandard": "c++20",
                "intelliSenseMode": "windows-msvc-x64",
                "compilerArgs": [
                    "/experimental:module",
                    "/interface"
                ]
            }
        ],
        "version": 4
    }
    

    The important part is to be using MSVC, c++20, and have /experimental:module and /interface. Everything else is default.

  • Logs from running C/C++: Log Diagnostics from the VS Code command palette

  • Logs from the language server logging

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Direzione di ricerca

Inizia con gli esempi m.cpp e u.cpp e con la configurazione .vscode/c_cpp_properties.json, quindi compila m.cpp con il comando per i moduli MSVC C++20 mostrato e analizza la diagnostica del servizio linguistico su t.privateMember. Il lavoro è terminato quando l’accesso friend non produce più alcun errore di membro inaccessibile e l’esempio continua a compilarsi e a collegarsi correttamente.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Valutazione

Stack tecnologico
cpp
Ambito
tooling
Tipo di issue
Bug
Difficoltà
4/5
Tempo stimato
3-5 giorni
Stato di attività
Ferma
Chiarezza
Abbastanza chiara
Idoneità per principianti
42/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.