Showing with 2 additions and 2 deletions.
  1. +2 −2 std/typecons.d
4 changes: 2 additions & 2 deletions std/typecons.d
Original file line number Diff line number Diff line change
Expand Up @@ -6926,8 +6926,8 @@ template ReplaceType(From, To, T...)
}
else static if (is(T[0] == function))
{
static assert(0, "Function types not supported,"
" use a function pointer type instead of "~T[0].stringof);
static assert(0, "Function types not supported," ~
" use a function pointer type instead of " ~ T[0].stringof);
}
else static if (is(T[0] : U!V, alias U, V...))
{
Expand Down