deed via Digitalmars-d-learn Mon, 03 Nov 2014 09:10:40 -0800
static if (is(typeof(T) == int)) should be static if (is(T == int)) T is already a type.
static if (is(typeof(T) == int)) should be
static if (is(T == int)) T is already a type.
Ahh. Thanks!