aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/misc16.C
blob: bc19edc2dd17aa7562d9086b3eb8c3c5952cb680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do assemble  }
// GROUPS passed miscellaneous-bugs
// Using a typedef causes a compiler error
typedef unsigned int Uint32;

// Using a define so that there isn't a typedef works OK.
//#define Uint32 unsigned int

Uint32 func0(Uint32, Uint32)
{
   return 0;
}

Uint32 func1(Uint32, Uint32)
{
   return 1;
}

Uint32 (*mf[])(Uint32, Uint32) = {func0, func1};