Commit a22b75d3 by Jason Merrill

new

From-SVN: r28468
parent 074917ba
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by redleaf <e1wwater@dingo.cc.uq.edu.au>
struct B {
template <class> void bar();
} b;
template <class T> void foo() {
b.bar<T>(); // gets bogus error - bar undeclared
b.template bar<T>(); // gets bogus error - ditto
b.B::bar<T>();
}
template void foo<void>(); // gets bogus error
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment