view test/b.d @ 50:6fcc08a4d406 trunk

[svn r54] Added support for nested delegates referencing parent's stack variables. Replaced tester.sh with a version written in D. A few bugfixes.
author lindquist
date Mon, 22 Oct 2007 15:40:56 +0200
parents c53b6e3fe49a
children fd32135dca3e
line wrap: on
line source

module b;

struct S
{
    int i;
    float[4] f;
}

void main()
{
    S s;
    int i = s.i;
    int* p = &s.i;
    *p = 42;
    printf("%d == %d\n", *p, s.i);

    float* f = &s.f[0];
    printf("%f == %f\n", *f, s.f[0]);
    *f = 3.1415;
    printf("%f == %f\n", *f, s.f[0]);
    s.f[0] = 123.456;
    printf("%f == %f\n", *f, s.f[0]);
}