aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/extern-c-redecl2.C
blob: 055148f38417b5ab03c14055b689bc455e687adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/41020
// { dg-do compile }

extern "C"
{
  int fork (void);
}

class frok
{
  int this_errno;
  friend int fork (void);
};

extern "C" int
fork (void)
{
  frok grouped;
  return grouped.this_errno;
}