view tests/mini/bug198_ctfestructinit.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
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);
}