Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / PR20399 / vector
blob1e1b6705f51bcb6eacb586d476f35af4b8c94c02
1 namespace std {
2 template <typename _Tp, typename _Alloc = int>
3 struct vector {
4   static void func() { vector *i, *j; i - j; }
5 };
7 struct bit_iterator { ~bit_iterator() {} };
9 inline void operator-(int __x, const bit_iterator &__y) {
12 template <typename _Alloc>
13 struct vector<bool, _Alloc> : bit_iterator {
14   typedef bit_iterator iterator;
17 } // namespace std