diff run/t/template_61_C.d @ 1588:d20691fd37af

Move template_61_C from nocompile to run.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 Aug 2008 21:56:28 +0200
parents nocompile/t/template_61_C.d@2846120b9538
children c82cb55ee1ea
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/template_61_C.d	Mon Aug 25 21:56:28 2008 +0200
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bruno Medeiros	<brunodomedeiros+bugz@gmail.com>
+// @date@	2007-04-14
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1143
+// @desc@	[Issue 1143] Assertion failure: '0' on line 850 in 'template.c' - On specialization of IFTI template parameters.
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.t.template_61_C;
+
+void foo(T, U : float = T)(char[] data, T t){
+}
+
+int main(){
+	foo("abc", 1);
+	return 0;
+}