ldc icon indicating copy to clipboard operation
ldc copied to clipboard

Error: no init symbol for zero-initialized struct

Open Zoadian opened this issue 1 year ago • 1 comments

import std.stdio; import core.stdc.config;

void main() { __c_complex_float[] xxx = new __c_complex_float[10]; writeln(xxx); }

results in "Error: no init symbol for zero-initialized struct". it works with dmd.

Zoadian avatar Sep 10 '24 11:09 Zoadian