view nocompile/associative_array_06.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 1f6cf5ccfbc9
children
line wrap: on
line source

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

// void is an illegal KeyType

// __DSTRESS_ELINE__ 12

module dstress.nocompile.associative_array_06;

int main(){
	int[void] array;
	return 0;
}