• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 void SomeFunction();
2 extern int someVar;
3 #define SOME_DEFUN 123
4 
5 class someClass {
6   void somePrivateMethod();
7 public:
8   void somePublicMethod(int foo);
9 };
10 
11 extern "C" void ExternFunction();
12 
13 namespace foo {
14   void NamespacedFunction();
15 }
16 
17 namespace bar {
18   void NamespacedFunction();
19 }
20 
21 
22 struct StructWithBlocklistedFwdDecl;
23 
24 struct StructWithBlocklistedDefinition {
25     StructWithBlocklistedFwdDecl* other;
26 };
27