summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb54.C
blob: 1e71ca82e6dbc16ccf60b3f0b0354c9c7e3f73fa (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do run  }
#include <iomanip>
#include <iostream>
#include <cstdlib>

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