82a6d74d创建于 2025年4月30日历史提交
/*
 * Check whether the compiler has complex<T>.
 */

#include <complex>
using namespace std;
int main()
{
  complex<float> a;
  complex<double> b;
  abs(b);
  real(b);
  imag(b);
  arg(b);
  conj(b);
  return 0;
}