view test/bug41.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +0100
parents b706170e24a9
children
line wrap: on
line source

module bug41;

void main()
{
    char[] a = "hello world";
    char* ap = a.ptr;
    size_t i = 5;
    char[] b = ap[0..i];
    assert(b == "hello");
}