view test/bug9.d @ 131:5825d48b27d1 trunk

[svn r135] * Merged DMD 1.025 * * Fixed a minor linking order mishap * * Added an command line option -annotate * * Fixed some problems with running optimizations * * Added std.stdio and dependencies to lphobos (still not 100% working, but compiles and links) * * Fixed problems with passing aggregate types to variadic functions * * Added initial code towards full GC support, currently based on malloc and friends, not all the runtime calls the GC yet for memory * * Fixed problems with resolving nested function context pointers for some heavily nested cases * * Redid function argument passing + other minor code cleanups, still lots to do on this end... *
author lindquist
date Fri, 04 Jan 2008 01:38:42 +0100
parents 8b0e809563df
children d9d5d59873d8
line wrap: on
line source

module bug9;
struct rgb
{
  ubyte[3] values;
  rgb average(rgb other)
  {
    rgb res;
    foreach (id, ref v; res.values) v=(values[id]+other.values[id])/2;
    return res;
  }
  void print()
  {
    printf("[%d,%d,%d]\n", values[0], values[1], values[2]);
  }
}

void main()
{
    rgb a,b;
    a.values[0] = 10;
    a.values[1] = 20;
    a.values[2] = 30;
    b.values[0] = 30;
    b.values[1] = 20;
    b.values[2] = 10;
    rgb avg = a.average(b);
    avg.print();
    assert(avg.values[0] == 20);
    assert(avg.values[1] == 20);
    assert(avg.values[2] == 20);
}