Skip to content

Instantly share code, notes, and snippets.

@jpluimers
Created November 10, 2017 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluimers/b7a98314cab0b31724c0d241b6c8a3d0 to your computer and use it in GitHub Desktop.
Save jpluimers/b7a98314cab0b31724c0d241b6c8a3d0 to your computer and use it in GitHub Desktop.
what type would you expect obj.x to be? Integer or string? https://plus.google.com/103246155735524926641/posts/fZPWUeWc1D9
type
TClassC<T> = class
private
type
TClassD<T> = class
private
x: T;
end;
end;
var
obj: TClassC<Integer>.TClassD<string>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment