FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / weak.C
blob5937979f3012a89a11f8f54e939684cda98b39f9
1 // Bug: g++ fails to instantiate operator<<.
2 // Build don't run:
3 // Special g++ Options: -static
4 // Skip if not target: i?86-*-linux*
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);