aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/rtti/typeid9.C
blob: 381252dc6b08b6eb3d19a453ba86b0be880a591d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test that the typeid name for a local class is properly null-terminated.
// { dg-do run }

#include <string.h>
#include <typeinfo>
#include <stdio.h>

int f()
{
  struct A {}; struct B {};
  const std::type_info &ti = typeid(A);
  const std::type_info &ti2 = typeid(B);
  puts (ti.name());
  puts (ti2.name());
  return strcmp (ti.name(), "Z1fvE1A") || strcmp (ti2.name(), "Z1fvE1B");
}

int main()
{
  return f();
}