(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.robertl/
eb54.C
// { dg-do run  }
#include <iomanip>
#include <iostream>
#include <cstdlib>

int main()
{
  std::cout << std::setbase(3) << std::endl;
  std::exit (0);
}