diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-22 16:14:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 23:14:07 +0000 |
| commit | 165a95ebb2e9dbdc1b92bdc103470438a5114500 (patch) | |
| tree | 31318fc5633d5596c5ed3c7c910e690d9fd6ca8f /tools | |
| parent | 8a36695f1f3abaf98831d4512e74ebd5bce1494e (diff) | |
Fix visibility of synthesized Differential typedefs. (#7865)
* Fix visibility of synthesized `Differential` typedefs.
* Delete incorrect test.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/slang-test/slang-test-main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp index 6355426f7..54ec1a842 100644 --- a/tools/slang-test/slang-test-main.cpp +++ b/tools/slang-test/slang-test-main.cpp @@ -657,7 +657,10 @@ static void SLANG_STDCALL _fileCheckDiagnosticCallback( auto& testReporter = *reinterpret_cast<TestReporter*>(data); testReporter.message(messageType, message); } - +struct bool2 +{ + bool x, y; +}; // // Check some generated output with FileCheck // |
