aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/weak.C
blob: a799d0a0bd1b7ae99beed7ff982ff731fe6a85bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Bug: g++ fails to instantiate operator<<.
// Build don't run:
// Special g++ Options: -static
// Skip if not target: i?86-*-linux*

// libc-5.4.xx has __IO_putc in its static C library, which can conflict
// with the copy of __IO_putc in the libstdc++ library built by egcs.
#include <iostream.h>
#include <streambuf.h>
#include <stdio.h>

istream x (0);

main () {
  x.get();
  putc(0, 0);
  fgets(0, 0, 0); 
  x.get((char*) 0, 0);
}