using F = void();
struct X {
virtual F f;
};
struct Y : X {
F f override;
};
The code is valid, but ICC cannot compile the overriden function declaration in Y.
using F = void();
struct X {
virtual F f;
};
struct Y : X {
F f override;
};
The code is valid, but ICC cannot compile the overriden function declaration in Y.