mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 07:30:33 +03:00
Merge pull request #10621 from 0xEAB/thewilsonator-patch-1
Fix self assignment for dlang/dmd#20696
This commit is contained in:
commit
336bed6d8f
1 changed files with 1 additions and 1 deletions
|
@ -3348,7 +3348,7 @@ package(std) Rebindable2!T rebindable2(T)(T value)
|
||||||
|
|
||||||
this(ref inout S rhs) @safe inout
|
this(ref inout S rhs) @safe inout
|
||||||
{
|
{
|
||||||
this.i = i;
|
this.i = rhs.i;
|
||||||
copied = true;
|
copied = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue