mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
18 lines
179 B
D
18 lines
179 B
D
import core.attribute;
|
|
|
|
@mustuse struct S
|
|
{
|
|
ref S opUnary(string op)() return
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
|
|
void test()
|
|
{
|
|
S s;
|
|
++s;
|
|
--s;
|
|
s++;
|
|
s--;
|
|
}
|