Fix test breaking for MSVC

This commit is contained in:
Christoffer Lerno
2025-11-17 10:46:01 +01:00
parent 1e543dc286
commit 20dfdf5c5d

View File

@@ -3,7 +3,7 @@ import std;
fn void main(String[] args)
{
ZString* environ_arr = std::os::posix::environ;
ZString* environ_arr = null;
foreach (idx, ZString &envvar : environ_arr) // #error: It's not possible to enumerate an expression of type 'ZString*'
{}
}