aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/cxx-templates-common.h
blob: 40a11e20b4f0aea847e248a7e35a69e152acc118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
template<typename T> struct SomeTemplate {};

struct DefinedInCommon {
  void f();
  struct Inner {};
  friend void FoundByADL(DefinedInCommon);
};

template<typename T> struct CommonTemplate {
  enum E { a = 1, b = 2, c = 3 };
};