2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / overload3.C
blobec48fbb90707fe5e6d4c64af8a63465816bd50c3
1 // PR c++/16870
3 struct A
5   int operator[](int) const;
6 };
8 template<int> A foo();
10 A bar(A(*)());
12 template<int> int baz() { return (bar(&foo<0>))[0]; }
14 template int baz<0>();