view run/s/string_postfix_02_A.d @ 624:07fab02ed0d2

added postfix tests for String Literals
author thomask
date Sat, 13 Aug 2005 20:02:23 +0000
parents
children
line wrap: on
line source

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

module dstress.nocompile.s.string_postfix_02_A;

int main(){
	dchar[1] master;
	assert(typeid(typeof("a"d))==typeid(typeof(master)));
	return 0;
}