Last active
August 29, 2015 14:01
-
-
Save freeonterminate/123d11a8aa4c80bfa58b to your computer and use it in GitHub Desktop.
最小限の Hung Up コード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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