# HG changeset patch # User thomask # Date 1098526109 0 # Node ID e632533062c6d8a6e1ffeee611e41955105052ac # Parent fa205cfd549155d4090e8d43c279e210a36ef887 removed bad throw test (throwing any Object is allowed) diff -r fa205cfd5491 -r e632533062c6 nocompile/throw_03.d --- 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; -}