Search

February 23, 2023
General »
...T val){ data ~= val;  }

    @trusted T pop()
    {
        assert(!empty);
        auto val = data[$ - 1];
        data = data...
February 23, 2023
Issues »
...i++];
                assert (i < format.length, "Invalid format string");
                if (format[i] == '%' || format[i] == '?')
                {
                    assert(!isQ...
February 23, 2023
General »
...void poll() {
		pragma(inline, true);
		// or assert(0);
		// or noreturn ext.
	}
} else static assert(0);
```
February 22, 2023
General »
...T*) ptr;
                    return self.get_status(p);
                }

            }
            assert(pointer);
            return Selector(pointer, &gen!(T).vtable...
February 22, 2023
General »
static assert is the problem here, it won't compile on wasm target
February 23, 2023
General »
...else version(...)
	public import ... : poll;
else
	static assert(0, "I don't know how to...
February 22, 2023
Issues »
...nogc`.
  `druntime/test/allocations/src/alloc_from_assert.d` then passes on
  Windows again (not...
February 22, 2023
Issues »
...nogc`.
  `druntime/test/allocations/src/alloc_from_assert.d` then passes on
  Windows again (not...
February 22, 2023
Issues »
...0/druntime/test/allocations/src/alloc_from_assert.d (skipped by DMD on Windows)

Analysis...
February 21, 2023
General »
...ints = foo(bytes);
    assert(ints[0] == 42); /* passes */
    bytes[0] = 13;
    assert(ints[0] == 42...
98 99 100 101 102 103 104 105 106 107 108
Next ›   Last »