Commit 3fe88ebf by Jason Merrill

new

From-SVN: r22954
parent ae66ef83
// Check that foo<int> isn't resolved too early.
template <class T> void foo(T*);
template <class T, class U> void foo(T*, U) { }
template <class T, class U> void bar(void (*)(T, U), U) { }
int main() {
bar<int*>(&foo, 1);
bar<int*>(&foo<int>, 1);
bar<int*>(foo, 1);
bar<int*>(foo<int>, 1);
}
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