aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
blob: 30eab786f34a8b1fa2581a5274ead13d4d15ca56 (plain)
1
2
3
4
5
6
7
8
9
// Special g++ Options: -O

#include <iostream.h>
#include <typeinfo>

int main() {
  int *i1, *i2;
  cerr << (typeid(i1)==typeid(i2)) << endl;
}