view complex/linking/b.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 5a0ed66a88d4
children 23834ba9736a
line wrap: on
line source

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

// @author@     Ben Hinkle <ben.hinkle@gmail.com>
// @date@       2004-12-07
// @uri@        news:cp2vjj$1ljt$1@digitaldaemon.com
// @url@        nntp://news.digitalmars.com/digitalmars.D.bugs

module dstress.complex.linking.b;

import dstress.complex.linking.a;

void functB() {
	StructA!(int)* x;
	x = new StructA!(int);
	x.set(10);
}