Search

March 14, 2021
Issues »
...this() {}
}

@safe:
struct Bar
{
    Foo f;
    ~this() @trusted {}
}

@safe:
void main()
{
    Bar b;
}
---

It should...
March 10, 2021
Issues »
...bar() //@safe
    {
      foo();
    }
    void bar2()() //@safe
    {
      foo();
    }
    runInsideDirect!bar();
    runInsideIndirect!bar();
    runOutsideDirect!bar();
    runOutsideIndirect!bar...
March 10, 2021
Issues »
...f)() { f(); }
        void bar() {
                // OK
                run!foo();

                // OK
                void bar() {
                        foo();
                }
                run!bar();

                // Error
                run...
March 06, 2021
General »
...one does

shared<T> t = ...;
foo(t);
bar(t);

Then the call to foo will...
March 06, 2021
Issues »
...call @system function
onlineapp.bar!().bar
onlineapp.d(7):        onlineapp.bar!().bar is declared here...
March 06, 2021
Issues »
...system function
onlineapp.bar!(S).bar
onlineapp.d(8):        onlineapp.bar!(S).bar is declared...
March 05, 2021
Announce »
...has solved this by having a search bar,

I don't know if that would...
March 03, 2021
General »
...produce anything in the tuple.

Try this one:

interface I
{
   int foo();
   int bar();
}

-Steve
February 27, 2021
General »
...const(S) bar();

int main(string[] args)
{
	for (const S foo; (foo = bar());) {  }
}
```
forauto.d...
February 27, 2021
General »
for (T foo; foo = bar();) { ... }
87 88 89 90 91 92 93 94 95 96 97 98
Next ›   Last »