view complex/linking/a.d @ 725:5a0ed66a88d4

meta data cleanup
author thomask
date Fri, 28 Oct 2005 21:34:18 +0000
parents 014844597bbd
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.a;

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