aboutsummaryrefslogtreecommitdiff
path: root/configuration/bazel/cxa_demangle.cpp
blob: 3e4f57feccf6e0d00d26735616aef7d374684fc0 (plain)
1
2
3
4
5
6
#include <cxxabi.h>
int main() {
  auto* p = abi::__cxa_demangle;
  (void) p;
  return 0;
}