view test/arrays7.d @ 81:3587401b6eeb trunk

[svn r85] Fixed: if a return statement appeared in the try block of a nested try-finally, only the inner-most finally block would be executed. Changed: Renamed all the LLVM_Dto... helper function to just Dto...
author lindquist
date Thu, 01 Nov 2007 17:27:18 +0100
parents 8b0e809563df
children fd32135dca3e
line wrap: on
line source

module arrays7;

struct S
{
    int i;
    float f;
    long l;
}

void main()
{
    S[] arr;
    S s;
    arr ~= s;
    arr ~= S(1,2.64,0xFFFF_FFFF_FFFF);
    assert(arr[1].i == 1);
    assert(arr[1].f > 2.63 && arr[1].f < 2.65);
    assert(arr[1].l == 0xFFFF_FFFF_FFFF);
}