Search

November 25
Issues »
...this error:

struct S {
    int[2] i;
}

void main()
{
    S s;
    s = cast(S) cast...
November 25
Issues »
...The following input

```
void function(int) a;
void function(int) b;

void main()
{
    const c...
November 25
Issues »
...code should work:

```d
void f(char){}
void f(double){}

void main()
{
    auto badAddrOfOverSet = &f...
November 25
Learn »
...E)e).to!string); // OK
    return e;
}

void main()
{
    fun(1);
    gun(E.One);
}
```

-- Bastiaan
November 24
Issues »
...expression
`cast(const(void*))cast(size_t)1LU` of type `const(void*)` to `ulong`

Server...
November 24
Issues »
...com
          Reporter: nick@geany.org

E.g.:

        void f(int[] b)
        {
            char[4] a;
            a...
November 23
DIP Ideas »
...ParameterizedVariableTypes parameterizedVariables;
		
		void opIndexAssign(PType)(PType value, string parameterizedVariable);
		
		static if (is(ResultType == void) {
		} else...
November 23
Issues »
...Tuple(T...)
{
    T fields;
    alias fields this;
}

void main ()
{
   Tuple!(string) tup;
   static foreach (j...
November 23
Issues »
...jmdavisProg.com

This code compiles just fine

---
void main() @safe
{
    Foo foo;
    auto foo2 = foo...
November 23
Issues »
...kdevel@vogtner.de

crash.d:
```
import std;

void main ()
{
   auto tup = tuple!(string, string, string...
1 2 3 4 5 6 7 8
Next ›   Last »