mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-15 20:33:14 +01:00
15 lines
141 B
D
15 lines
141 B
D
module app;
|
|
import lib;
|
|
|
|
void func()
|
|
{
|
|
int* ip;
|
|
int i = lib_templ_func(ip);
|
|
}
|
|
|
|
int main(char[][] args)
|
|
{
|
|
func();
|
|
return 0;
|
|
}
|