4 ms·
I've always thought that this ranked among the most obscure: typedef int F(int); class C { F f; }; int C::f(int i) { return i; } I've never seen it used
by andhow 13y ago
I've always thought that this ranked among the most obscure:
typedef int F(int);
class C { F f; };
int C::f(int i) { return i; }
I've never seen it used in practice...