Search

October 10
General »
...end(ap);

	return rc;
}

extern(C) void main() {
	wrap_printf("Foo\n");
}
```

```
$ dmd -betterC stdarg1...
October 10
Issues »
...test(ubyte n)(int[n] a...) {}

void main()
{
    test(1, 2, 3); // error
}
---

The error...
October 10
Issues »
...p\n", val, &this);
        val = 99;
    }
}

void main() {
    auto r = makeR();
    r.foo();
}

auto makeR...
October 10
Issues »
...reduced it to

---
import std.range;

void main()
{
    static struct S
    {
        int val;
        ~this()
        {
            assert...
October 10
Issues »
...called from.

```
import core.stdc.stdio;

void main()
{
// Error: can only get the location of...
October 09
Issues »
...The same happens with scope guards:
```
void main()
{
    goto x;
    scope(exit) {}
    x:
}
```

See also...
October 09
General »
...sum,
                      T.stringof, data);
  }
}

import std;
void main()
{
  auto arr = [1, 2, 3, 4, 5...
October 09
General »
...I also
imagine solving for that issue would equally solve for the main constructor
case?

October 08
Learn »
...hp; }
struct EntityDef
{
  mixin Foo stats;
}

void main()
{
  auto num = EntityDef(41);
  assert(num.stats...
October 08
General »
But why pointers?

```d
void @safe main()
{
    auto a = 0;
    auto b = 0;
    auto c...
14 15 16 17 18 19 20 21 22 23 24 25
Next ›   Last »