view nocompile/t/typeof_13_A.d @ 1175:e7e487c06620

[Issue 371] New: ICE on mutual recursive typeof in function declarations Bruno Medeiros <brunodomedeiros+bugz@gmail.com> 2006-09-26 news:bug-371-3@http.d.puremagic.com/issues/
author thomask
date Fri, 06 Oct 2006 06:56:50 +0000
parents
children daef239f37cf
line wrap: on
line source

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

// @author@	Bruno Medeiros <brunodomedeiros+bugz@gmail.com>
// @date@	2006-09-26
// @uri@	news:bug-371-3@http.d.puremagic.com/issues/
// @desc@	[Issue 371] New: ICE on mutual recursive typeof in function declarations

module dstress.nocompile.t.typeof_13_A;

void funcA( typeof(&funcB) p) {
}

void funcB( typeof(&funcA) p) {
}