view complex/linking/a.d @ 1598:23834ba9736a

Fixed typos in test cases. See D bug 2174.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:03:25 +0200
parents 5a0ed66a88d4
children
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.a;

struct StructA(T){
	void set(T x) {
		y = x;
	}
	T y;
}