bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/PR20399/vector
2025-02-14 19:21:04 +01:00

17 lines
364 B
Text

namespace std {
template <typename _Tp, typename _Alloc = int>
struct vector {
static void func() { vector *i, *j; i - j; }
};
struct bit_iterator { ~bit_iterator() {} };
inline void operator-(int __x, const bit_iterator &__y) {
}
template <typename _Alloc>
struct vector<bool, _Alloc> : bit_iterator {
typedef bit_iterator iterator;
};
} // namespace std