On Friday, 11 September 2015 at 00:48:28 UTC, Prudence wrote:
static Array!(bool delegate(int, WPARAM, LPARAM)) callbacks;
Try just using a regular array instead of the library Array. static bool delegate(int, WPARAM, LPARAM)[] callbacks;my guess is the Array library thing isn't marked as shared internally.