mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 13:10:35 +03:00
Fix self assignment for https://github.com/dlang/dmd/pull/20696
This commit is contained in:
parent
f95cd32419
commit
a6ad856d51
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