aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.phobos/std_internal_scopebuffer.d
blob: adecde1f5029d750c5e79cc7a85b498fc2c71761 (plain)
1
2
3
4
5
6
7
8
9
@system unittest
{
    import std.internal.scopebuffer;

    ubyte[10] tmpbuf = void;
    auto sb = scopeBuffer(tmpbuf);
    scope(exit) sb.free();
}