PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / ref-conv2.C
blobbb0ad39d6b1c292156488a7091511f5f4cf118dc
1 // PR c++/50523
3 template <class T>
4 struct A
6   A(const T&);
7   operator T&() const;
8   operator const T&() const;
9 };
11 int main()
13   A<int> a(1);
14   A<int> a2(a);