// { dg-do compile }// Make sure we emit a decent error message when trying to mangle an// expression not supported by the C++ ABI due to a defect.// Update: Better to make it supported, I think...template<intN>structA{};structB{staticintfoo(void);};template<classT>A<sizeof(T::foo())>func(void);intmain(){func<B>();}