Hacker News new | ask | show | jobs
by andhow 4570 days 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...