llvm/libc/utils/MPFRWrapper/check_mpfr.cpp

#include <mpfr.h>

int main() {
  mpfr_t x;
  mpfr_init(x);
  mpfr_clear(x);
  return 0;
}