c++: dependent conversion operator lookup [PR106179]
[official-gcc.git] / gcc / testsuite / g++.dg / template / operator16.C
blob434a266850c46ad8f291c519011c60098f2e943b
1 // PR c++/106179
3 struct Mat {
4   template <typename> Mat();
5 };
6 template <typename> struct Mat_;
7 template <typename _Tp> Mat::Mat() {
8   _Tp commaInitializer = commaInitializer.operator Mat_<_Tp>;