changeset 1327:e3aa51084bf5

removed broken assert_15 tests
author thomask
date Mon, 01 Jan 2007 16:24:46 +0000
parents 6e6f38cb21a3
children 288d15cd3b95
files nocompile/a/assert_15_A.d nocompile/a/assert_15_B.d nocompile/a/assert_15_C.d nocompile/a/assert_15_D.d
diffstat 4 files changed, 0 insertions(+), 72 deletions(-) [+]
line wrap: on
line diff
--- a/nocompile/a/assert_15_A.d	Mon Jan 01 16:24:38 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	<shro8822@uidaho.edu>
-// @date@	2006-05-23
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=152
-
-// __DSTRESS_ELINE__ 14
-
-module dstress.nocompile.a.assert_15_A;
-
-template T(int i){
-	static assert(0);
-	const int T = T!(i-1);
-}
-
-const int x = T!(1);
--- a/nocompile/a/assert_15_B.d	Mon Jan 01 16:24:38 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	<shro8822@uidaho.edu>
-// @date@	2006-05-23
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=152
-
-// __DSTRESS_ELINE__ 14
-
-module dstress.nocompile.a.assert_15_B;
-
-template T(){
-	static assert(0);
-	const int T = T!();
-}
-
-const int x = T!();
--- a/nocompile/a/assert_15_C.d	Mon Jan 01 16:24:38 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	<shro8822@uidaho.edu>
-// @date@	2006-05-23
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=152
-
-// __DSTRESS_ELINE__ 14
-
-module dstress.nocompile.a.assert_15_C;
-
-template T(int i){
-	static assert(0);
-	mixin T!(i-1);
-}
-
-mixin T!(1);
--- a/nocompile/a/assert_15_D.d	Mon Jan 01 16:24:38 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	<shro8822@uidaho.edu>
-// @date@	2006-05-23
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=152
-
-// __DSTRESS_ELINE__ 14
-
-module dstress.nocompile.a.assert_15_D;
-
-template T(){
-	static assert(0);
-	mixin T!();
-}
-
-mixin T!();