OSDN Git Service

Addition of a whole slew of "eb" test cases generated from the egcs-bugs
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb115.C
1 // Special g++ Options: -O
2
3 #include <iostream.h>
4 #include <typeinfo>
5
6 int main() {
7   int *i1, *i2;
8   cerr << (typeid(i1)==typeid(i2)) << endl;
9 }