blob: 5f360e5ea9fcba2d1c8ee1beb68bf626c83d06ba [file] [log] [blame]
void SomeFunction();
extern int someVar;
#define SOME_DEFUN 123
class someClass {
void somePrivateMethod();
public:
void somePublicMethod(int foo);
};
extern "C" void ExternFunction();
namespace foo {
void NamespacedFunction();
}
struct StructWithAllowlistedFwdDecl;
struct StructWithAllowlistedDefinition {
StructWithAllowlistedFwdDecl* other;
};