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

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents daef239f37cf
children
line wrap: on
line source

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

// @author@	Bruno Medeiros <daiphoenix@lycos.com>
// @date@	2006-07-29
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=270
// @desc@	[Issue 270] Compiler allows and crashes on typedefs of "immediate"-function types

// __DSTRESS_ELINE__ 17

module dstress.nocompile.t.typedef_17_A;

typedef short foo(byte);

void bar(){
	foo x;
}