Commit 3d6ed3ef by Mark Mitchell

Fix typo

From-SVN: r22157
parent 0c8bfdbc
// Build don't link: // Build don't link:
template<typename T, template <class> class U> void template_fn (T); template<typename T, template <class> class U> void template_fn (T);
template<typename T, typename U> void callme ( void (*)(T)); template<typename T> void callme ( void (*)(T));
template<typename T> struct S1; template<typename T> struct S1;
int main() int main()
{ {
callme( template_fn<double, S1>); // ERROR - no matching function callme(&template_fn<double, S1>);
} }
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