view tests/mini/compile_bug_ldc_154.d @ 1137:45d73f0a9b43

Automated merge with http://hg.dsource.org/projects/ldc
author Christian Kamm <kamm incasoftware de>
date Tue, 24 Mar 2009 14:34:16 +0100
parents 766267808f11
children
line wrap: on
line source

template toInt(char[4] arg)
{
	const uint toInt = (cast(uint[]) arg)[0];
	}
	 
	 void main()
	 {
	   auto i = toInt!("abcd");
	   }