changeset 65:e632533062c6

removed bad throw test (throwing any Object is allowed)
author thomask
date Sat, 23 Oct 2004 10:08:29 +0000
parents fa205cfd5491
children 33346dff2640
files nocompile/throw_03.d
diffstat 1 files changed, 0 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/nocompile/throw_03.d	Sat Oct 23 10:07:21 2004 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-
-class NoException{
-}
-
-int main(){
-	try{
-		throw new NoException();
-	}catch{
-		assert(0);
-	}
-	return 0;
-}