David Blaikie e50bd2b21c Reduce the PR20399 test case.
I couldn't get something /really/ obvious, and I imagine Richard Smith
might be able to provide some text explaining the sequence of steps
that's demonstrated by these files - but at least it's a bit simpler
now.

llvm-svn: 218840
2014-10-01 23:16:30 +00:00

14 lines
202 B
C++

#ifndef SECONDHEADER
#define SECONDHEADER
#include "vector"
template <class T>
struct Address {};
template <>
struct Address<std::vector<bool>>
: Address<std::vector<bool>::iterator> {};
#endif