mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
9 lines
228 B
Plaintext
9 lines
228 B
Plaintext
module get_environ;
|
|
import std;
|
|
|
|
fn void main(String[] args)
|
|
{
|
|
ZString* environ_arr = null;
|
|
foreach (idx, ZString &envvar : environ_arr) // #error: It's not possible to enumerate an expression of type 'ZString*'
|
|
{}
|
|
} |