C++: Update expected test results

This commit is contained in:
Jeroen Ketema
2025-05-23 16:03:47 +02:00
parent a77ddd7532
commit fbc9615287
6 changed files with 48 additions and 17 deletions

View File

@@ -3,7 +3,7 @@ void sink(char*);
int WinMain(void *hInstance, void *hPrevInstance, char *pCmdLine, int nCmdShow) { // $ ast-def=hInstance ast-def=hPrevInstance ast-def=pCmdLine ir-def=*hInstance ir-def=*hPrevInstance ir-def=*pCmdLine
sink(pCmdLine);
sink(*pCmdLine); // $ MISSING: ir
sink(*pCmdLine); // $ ir
return 0;
}