Allow building with GDC 10.3
This commit is contained in:
@ -39,7 +39,11 @@ import tanya.test.stub;
|
||||
int value;
|
||||
|
||||
void opCall(int value) @nogc nothrow pure @safe
|
||||
in (this.value == 0)
|
||||
in
|
||||
{
|
||||
assert(this.value == 0);
|
||||
}
|
||||
do
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user