blob: 8d3fec46801d9f0c4745da53605edb3091e8ca43 [file] [log] [blame]
// PR c++/102651
#include <typeinfo>
template <typename T>
struct S : T{
T x;
};
const void *p;
int main()
{
p = &typeid( S<void>** );
}