bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/odr_hash-Friend/Bad.h
2025-02-14 19:21:04 +01:00

17 lines
285 B
C++

template <class T>
struct iterator {
void Compare(const iterator &x) { return; }
friend void Check(iterator) { return; }
};
template <class T = int> struct Box {
iterator<T> I;
void test() {
Check(I);
I.Compare(I);
}
};
// Force instantiation of Box<int>
Box<> B;