Merge pull request #1412 from Hackerpilot/master

Code cleanup
This commit is contained in:
Andrei Alexandrescu 2013-07-19 15:37:56 -07:00
commit 73c8b59bb5
13 changed files with 72 additions and 75 deletions

View file

@ -1263,12 +1263,12 @@ unittest
static struct S3
{
int i;
this(this){};
this(this){}
}
static struct S4
{
int i = 1;
this(this){};
this(this){}
}
static assert (!hasElaborateAssign!S1);
static assert (!hasElaborateAssign!S2);