September 11, 2020 Issues » [Issue 21236] New: Associative array opApply is not nothrow | |||
|---|---|---|---|
| |||
...21236
Summary: Associative array opApply is not nothrow
Product: D
Version: D2
Hardware: All
OS... | |||
September 07, 2020 Learn » Re: Why is there no throws, @gc, impure, mutable ? | |||
|---|---|---|---|
| |||
...a "throw" attribute as the opposite of nothrow [1], but it looks like it still... | |||
September 07, 2020 Learn » Why is there no throws, @gc, impure, mutable ? | |||
|---|---|---|---|
| |||
...there is const, immutable, pure, @nogc and nothrow but no mutable, impure, @gc and throws... | |||
September 05, 2020 Issues » [Issue 21225] preview=dtorfields inserts unnecessary dtor call in nothrow ctors | |||
|---|---|---|---|
| |||
...in nothrow ctors Fixed by not inserting the destructor call if the constructor is `nothrow... | |||
September 05, 2020 Issues » [Issue 21227] New: import(".\\file") doesn't work on Windows | |||
|---|---|---|---|
| |||
...root/filename.d
@@ -741,7 +741,7 @@ nothrow:
for (const(char)* p = name; *p; p... | |||
September 04, 2020 Issues » [Issue 21225] preview=dtorfields inserts unnecessary dtor call in nothrow ctors | |||
|---|---|---|---|
| |||
...in nothrow ctors Fixed by not inserting the destructor call if the constructor is `nothrow... | |||
September 04, 2020 Issues » [Issue 21225] New: preview=dtorfields inserts unnecessary dtor call in nothrow ctors | |||
|---|---|---|---|
| |||
...preview=dtorfields`:
======================================
struct Nothrow
{
~this() {}
}
struct NothrowConstructor
{
Nothrow member;
this(int) pure nothrow {}
}
======================================
Error: `pure... | |||
September 04, 2020 Issues » [Issue 21223] nothrow constructor may call throwing constructor with | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=21223 --- Comment #1 from moonlightsentinel@disroot.org... | |||
September 04, 2020 Issues » [Issue 21223] New: nothrow constructor may call throwing constructor with | |||
|---|---|---|---|
| |||
...HasDtor member;
this(int) pure nothrow @nogc @safe {}
~this() pure nothrow @nogc @safe {}
}
==============================================================
Compiling this... | |||
September 04, 2020 Learn » Re: I think Associative Array should throw Exception | |||
|---|---|---|---|
| |||
int foo() nothrow {
return "1".to!int;
}
The following code is valid, will never throw... | |||
Copyright © 1999-2021 by the D Language Foundation