new
From-SVN: r22954
This commit is contained in:
parent
ae66ef838f
commit
3fe88ebf0d
13
gcc/testsuite/g++.old-deja/g++.pt/overload6.C
Normal file
13
gcc/testsuite/g++.old-deja/g++.pt/overload6.C
Normal file
@ -0,0 +1,13 @@
|
||||
// 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user