view run/s/string_postfix_01_A.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents 07fab02ed0d2
children
line wrap: on
line source

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

module dstress.nocompile.s.string_postfix_01_A;

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