1 // { dg-do link { target i?86-*-linux* i?86-*-gnu* x86_64-*-linux* } }
2 // { dg-require-effective-target static }
3 // { dg-options "-static" }
4 // Bug: g++ fails to instantiate operator<<.
5 
6 // libc-5.4.xx has __IO_putc in its static C library, which can conflict
7 // with the copy of __IO_putc in the libstdc++ library built by egcs.
8 #include <iostream>
9 #include <streambuf>
10 #include <cstdio>
11 
12 std::istream x (0);
13 
14 int
main()15 main () {
16   x.get();
17   std::putc(0, 0);
18   std::fgets(0, 0, 0);
19   x.get((char*) 0, 0);
20   return 0;
21 }
22 
23