Files
clang-p2996/clang/test/Modules/Inputs/odr_hash-Friend/Box.h
Richard Trieu 4eefb4511d [ODRHash] Don't hash friend functions.
In certain combinations of templated classes and friend functions, the body
of friend functions does not get propagated along with function signature.
Exclude friend functions for hashing to avoid this case.

llvm-svn: 322350
2018-01-12 04:42:27 +00:00

15 lines
223 B
C++

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