https://issues.dlang.org/show_bug.cgi?id=23202
Issue ID: 23202
Summary: assigning class.tupleof with a string segfaults at
runtime, also with @safe
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: normal
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
Example code:
```
@safe:
class S
{
string str;
}
void main()
{
auto s = S.init.tupleof;
}
```
--
