Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / weak.C
blob49132adbeb3f47f60be82c52114477601c271460
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 main () {
15   x.get();
16   std::putc(0, 0);
17   std::fgets(0, 0, 0); 
18   x.get((char*) 0, 0);