blob: f04deb13a838b8452902220504dd348ff881e81a [file] [log] [blame]
// Build don't link:
// GROUPS passed enums
enum fig {
figgy,
pudding,
}; // ERROR - comma
class X {
public:
static fig (*open)(void *thing, const char *filename);
static fig (*parse)(void *thing);
};
enum fig (*X::open)(void *thing, const char *filename) = 0;
fig (*X::parse)(void *thing) = 0;