Search

September 11, 2020
Issues »
...21236
           Summary: Associative array opApply is not nothrow
           Product: D
           Version: D2
          Hardware: All
                OS...
September 07, 2020
Learn »
...a "throw" attribute as the opposite of nothrow [1], but it looks like it still...
September 07, 2020
Learn »
...there is const, immutable, pure, @nogc and nothrow but no mutable, impure, @gc and throws...
September 05, 2020
Issues »
...in nothrow ctors

  Fixed by not inserting the destructor call if the constructor is
  `nothrow...
September 05, 2020
Issues »
...root/filename.d
@@ -741,7 +741,7 @@ nothrow:
             for (const(char)* p = name; *p; p...
September 04, 2020
Issues »
...in nothrow ctors

  Fixed by not inserting the destructor call if the constructor is
  `nothrow...
September 04, 2020
Issues »
...preview=dtorfields`:

======================================
struct Nothrow
{
    ~this() {}
}

struct NothrowConstructor
{
    Nothrow member;
    this(int) pure nothrow {}
}

======================================

 Error: `pure...
September 04, 2020
Issues »
https://issues.dlang.org/show_bug.cgi?id=21223

--- Comment #1 from moonlightsentinel@disroot.org...
September 04, 2020
Issues »
...HasDtor member;

    this(int) pure nothrow @nogc @safe {}

    ~this() pure nothrow @nogc @safe {}
}

==============================================================

Compiling this...
September 04, 2020
Learn »
int foo() nothrow {
    return "1".to!int;
}

The following code is valid, will never throw...
112 113 114 115 116 117 118 119 120 121 122
Next ›   Last »