view suite/dwarfdebug/dwarf2/app.d @ 143:336ec4f4bbb3 trunk

[svn r147] tango.io.Console is now working. True this time :) Yay!
author lindquist
date Fri, 25 Jan 2008 01:42:36 +0100
parents 0ab29b838084
children
line wrap: on
line source

module app;
import lib;

void func()
{
    int* ip;
    int i = lib_templ_func(ip);
}

int main(char[][] args)
{
    func();
    return 0;
}