summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/misc16.C
blob: 15e3946a0d3d8655c68ff6329f9d7d3683d5b027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link: 
// 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};