Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / auto-96647.C
blob8cbe155415cde28d0f28ef2d29efc58b57971c6d
1 // PR c++/96647
2 // { dg-do compile { target c++14 } }
4 template<typename>
5 struct Base {
6   auto f(int) { }
7   auto f(char) { }
8 };
10 void (Base<void>::*ptr)(int) = &Base<void>::f;