* **Node Version**:18.14.0 * **c8 Version**:8.0.1 * **Platform**:Darwin C02C26P7MD6T 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:42:42 PDT 2023; root:xnu-10002.1.13~1/RELEASE_X86_64 x86_64 ````js function huhu(someValue) { switch (someValue) { case true: const result = 42; return result; default: return 43; } }; huhu(true); huhu(false); ```` Execute with ```` npx c8 node huhu.js ```` Reported coverage: <img width="518" alt="image" src="https://github.com/bcoe/c8/assets/2872388/7eabcc0f-2d8a-4ab8-a2cf-1d7b2b000573"> If i omit the const declaration and just return 42; the coverage is 100%. Expectation is to have 100% coverage for the above snippet.