view run/u/unittest_09_E.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 38e8bc3a9a50
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	<nail-mail@mail.ru>
// @date@	2006-03-26
// @uri@	bug-75-3@http.d.puremagic.com/bugzilla/

module dstress.run.u.unittest_09_E;

struct Dummy{
}

struct TemplatedStruct(Param){
	static real f = 0.0L;
}

alias TemplatedStruct!(Dummy) X;        

int main(){
        TemplatedStruct!(Dummy) e;

        return 0;
}