view tests/mini/strings2.d @ 1292:ad41053c336e

Make static int[] a = [1, 2]; a[0] = 4; not segfault by making the array data ptr a non-const global variable.
author Christian Kamm <kamm incasoftware de>
date Sun, 03 May 2009 11:16:54 +0200
parents 4f004553de33
children
line wrap: on
line source

void main()
{
    char[] s = "";
    assert(s);
}