view run/t/typedef_09_F.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
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_F;

typedef int A;

int main(){
	A a;

	a += 1;

	return 0;
}