Search

12 hours ago
Issues »
https://issues.dlang.org/show_bug.cgi?id=24308

--- Comment #5 from dlangBugzillaToGithub <robert.schadek...
1 day ago
Learn »
...that import is also part of the 'dub' build process:

```
import mikes_lib;
import std...
1 day ago
General »
...intervention, the whole purpose of it):

```d
import std;

class SerializationRoot {
    static void function()[TypeInfo...
1 day ago
General »
```d
import std;

interface ISerialize {
    void serialize();
}

struct thing{ }

class SerializableRoot {
    void serialize(this T...
2 days ago
Issues »
...other) @trusted scope {
    }
}
```

Results in:

```d
// D import file generated from 'str.d'
module str...
2 days ago
General »
...problem is essentially that a more-local import or singular declaration
shadows an entire overload...
3 days ago
DIP Ideas »
...bit iffy, try this one instead)



```D
import std.stdio;

void main() {
    Parent parent = new...
3 days ago
DIP Ideas »
...this, assuming it is even compiles:

```d
import std.stdio;

void main() {
    Child child = new...
3 days ago
Learn »
...but I think this is trivail

```d
import std;
template partialN(alias F,int arg...
3 days ago
General »
...import default_serialise;

void main(){
    import std;
    static struct Dummy{
        import default_serialise: serialise;
        import...
« First   ‹ Prev
1 2
Next ›   Last »