PR c++/80290
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / weak.C
blob52444e77946dc74752ce981d1bad452fc0c7becc
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<<.
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>
12 std::istream x (0);
14 int
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;