Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class FunctionType = function int();
  2.  
  3. class C {
  4. int f() {
  5. return 1;
  6. }
  7.  
  8. FunctionType f = function() {
  9. return 1;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement