Skip to content

Instantly share code, notes, and snippets.

@freeonterminate
Last active August 29, 2015 14:01
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 freeonterminate/123d11a8aa4c80bfa58b to your computer and use it in GitHub Desktop.
Save freeonterminate/123d11a8aa4c80bfa58b to your computer and use it in GitHub Desktop.
最小限の Hung Up コード
program Project1;
type
IFoo<T> = interface;
TBar<T> = record
Value: IFoo<TArray<T>>;
end;
IFoo<T> = interface
function Bar: TBar<T>;
end;
function Test: TBar<Integer>;
begin
Result.Value.Bar;
end;
begin
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment