xxxxxxxxxx
import std.stdio;
void foo (T) ()
{
auto i = T.min;
assert (i > cast(T) 0);
}
void main ()
foo!byte;
foo!short;
foo!int;
foo!long;