aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/rtti5.C
blob: 38a5146e8c907288f71a15744e3b8017666a0224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:
// Special g++ Options: -fno-rtti

// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 9 Apr 1999 <nathan@acm.org>
// derrived from bug report from Alexander Zvyagin <zvyagin@mx.ihep.su>

// check we don't die with disabled rtti


int main(void) {
  int i;
  typeid(i); // ERROR - rtti disabled
}