summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb115.C
blob: e7065b269fe671bf0b9f2e5cf7473cf1db20db61 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do run  }
// { dg-options "-O" }

#include <iostream>
#include <typeinfo>

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