2021-06-01 19:58:46 +00:00
|
|
|
struct Foo {
|
|
|
|
static Func2<U>(u: U) : U {
|
|
|
|
return u;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Func<T>(t: T): T {
|
|
|
|
foo: T = t;
|
|
|
|
return Foo.Func2(foo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-03 00:26:26 +00:00
|
|
|
struct MemoryBlock<T>
|
|
|
|
{
|
|
|
|
start: MemoryAddress;
|
|
|
|
capacity: uint;
|
|
|
|
|
|
|
|
AddressOf(count: uint): MemoryAddress
|
|
|
|
{
|
|
|
|
return start + (count * @sizeof<T>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-01 19:58:46 +00:00
|
|
|
struct Program {
|
|
|
|
static Main(): int {
|
|
|
|
x: int = 4;
|
|
|
|
y: int = Foo.Func(x);
|
2021-06-03 02:03:58 +00:00
|
|
|
block: MemoryBlock<int>;
|
2021-06-03 22:08:01 +00:00
|
|
|
block.capacity = y;
|
|
|
|
block.start = @malloc(y * @sizeof<int>());
|
|
|
|
z: MemoryAddress = block.AddressOf(2);
|
|
|
|
Console.PrintLine("%p", block.start);
|
|
|
|
Console.PrintLine("%p", z);
|
|
|
|
@free(block.start);
|
|
|
|
return 0;
|
2021-06-01 19:58:46 +00:00
|
|
|
}
|
|
|
|
}
|