view tests/mini/bug198_ctfestructinit.d @ 1638:0de4525a9ed6

Apply workaround for #395 by klickverbot.
author Christian Kamm <kamm incasoftware de>
date Mon, 08 Mar 2010 20:06:08 +0100
parents 29c0d1194033
children
line wrap: on
line source

struct Color {
  uint c;
  static Color opCall(uint _c) { Color ret; ret.c = _c; return ret; }
}

// run at compile time
static const Color white = Color(0xffffffff);

void main()
{
  assert(white.c == 0xffffffff);
}