/// Negative tests — these must ALL fail to compile.
/// Run: dmd -i -c test_negative.d
/// Expected: compilation errors for every call below.
import lib;
void void D main()main()
{
// Positional function call — cannot pass `int` as `NamedOnly`
auto (local variable) _error_ r1r1 = lib.inflateRect(10, 20, 100, 200, 5);
// Positional struct init — cannot convert `int` to `NamedOnly`
auto (local variable) _error_ r2r2 = lib.RectOpts(10, 20, 100, 200);
}