mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
21 lines
211 B
D
21 lines
211 B
D
struct MaybeShared
|
|
{
|
|
this(this T)()
|
|
{
|
|
|
|
}
|
|
|
|
~this()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
{
|
|
auto aboutToDie = MaybeShared();
|
|
}
|
|
{
|
|
auto aboutToDie = shared MaybeShared();
|
|
}
|
|
}
|