summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/Inputs/odr_hash-Friend/Good.h
blob: 4c38392eb6ed0e92b10329f28ebb5a757f09b08b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
  }
};

// Force instantiation of Box<int>
Box<> B;
OpenPOWER on IntegriCloud