8sa1-gcc/gcc/testsuite/g++.old-deja/g++.brendan/misc16.C
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

20 lines
363 B
C

// 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};