]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Analysis/unified-sources/container.h
Vendor import of clang trunk r338150:
[FreeBSD/FreeBSD.git] / test / Analysis / unified-sources / container.h
1 class ContainerInHeaderFile {
2   class Iterator {
3   };
4
5 public:
6   Iterator begin() const;
7   Iterator end() const;
8
9   int method() { return 0; }
10 };