blob: c4a923fcea46fdfde17f34ca1d6d9a26e0064857 [file] [log] [blame]
// bindgen-flags: --blacklist-function "ExternFunction" --blacklist-function "foo::NamespacedFunction" --enable-cxx-namespaces
extern "C" void ExternFunction();
namespace foo {
void NamespacedFunction();
}
namespace bar {
void NamespacedFunction();
}