<div dir="ltr">Here's the minimal reproducer that I could come up with:<pre>template<int N>
struct test_template
{
template<int N2>
void do_nothing(int value)
{
(void)value;
}
};
template<int N>
void do_test()
{
test_template<N> t;
t.do_nothing<N>(0);
}
int main()
{
do_test<2>();
return 0;
}
</pre><div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 10, 2015 at 3:04 PM, Nikola Smiljanic <span dir="ltr"><<a href="mailto:popizdeh@gmail.com" target="_blank">popizdeh@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Can you provide a minimal example that reproduces this error?</div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Fri, Dec 11, 2015 at 5:03 AM, Dave Johansen via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div class="h5"><div dir="ltr"><div><div><div><a href="https://llvm.org/bugs/show_bug.cgi?id=13566" target="_blank">https://llvm.org/bugs/show_bug.cgi?id=13566</a><br><a href="https://llvm.org/bugs/show_bug.cgi?id=18995" target="_blank">https://llvm.org/bugs/show_bug.cgi?id=18995</a><br></div>I
was working on some code and confused by the error output that's
documented in the above bugzillas, so I was curious if there's been any
work on improving this error output?<br></div>Thanks,<br></div>Dave</div>
<br></div></div>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br></div></div></div>