blob: 6eb94dab2b962cc386fe27918aad728e6104c9b5 [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed enums
enum fig {
figgy,
pudding, // { dg-error "comma at end" "" { target { ! c++11 } } }
};
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;