https://issues.dlang.org/show_bug.cgi?id=12680
Issue ID: 12680
Summary: isIterable fails for types with disabled postblit
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P1
Component: Phobos
Assignee: [email protected]
Reporter: [email protected]
//----
import std.traits;
struct S
{
this(this) @disable;
}
static assert(isIterable!(S[]));
//----
Fails. Shouldn't.
--
