blob: d6e5593b242293ebdce0ba41778d51a29b25432f [file] [log] [blame]
// Build don't link:
template <int I>
struct S {};
template <int J>
void foo(S<J + 2>);
void bar()
{
foo(S<3>()); // ERROR - no way to deduce J from this.
}