view test/b.d @ 21:8d45266bbabe trunk

[svn r25] * Fixed a lot of problems with string literals * Fixed slice-slice copying assignment
author lindquist
date Thu, 04 Oct 2007 07:01:15 +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]);
}