view nocompile/t/typedef_09_A.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
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

// __DSTRESS_ELINE__ 20

module dstress.nocompile.t.typedef_09_A;

typedef int A;
typedef int B;

void main(){
	A a;
	B b;

	a = a + b;
}