view run/t/typedef_09_D.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 8bdffaaee483
children
line wrap: on
line source

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

// @author@	Roberto Mariottini <Roberto_member@pathlink.com>
// @date@	2005-12-05
// @uri@	dn1gtg$145u$1@digitaldaemon.com

module dstress.run.t.typedef_09_E;

typedef int A;

int main(){
	A a;

	a = 1 + a;

	return 0;
}