view compile/typedef_05.d @ 358:8a2ff09d62cb

dif. fixes 1
author thomask
date Fri, 25 Mar 2005 05:14:59 +0000
parents 55a2c755d699
children
line wrap: on
line source

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

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2004-09-06

module dstress.compile.typedef_05;

typedef char[] String;

char[] test(String s){
	return s[4..6];
}