xref: /llvm-project/clang/test/Analysis/unified-sources/container.h (revision 516837f2a1585d4a2a620162cc996ca763046e7d)
1 class ContainerInHeaderFile {
2   class Iterator {
3   };
4 
5 public:
6   Iterator begin() const;
7   Iterator end() const;
8 
method()9   int method() { return 0; }
10 };
11