annotate norun/throw_04.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents db4b6169a99d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
382
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
1 // $HeadURL$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
2 // $Date$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
3 // $Author$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
4
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
5 module dstress.norun.throw_04;
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
6
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
7 static ~this(){
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
8 throw new Exception("Message\n");
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
9 }
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
10
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
11 int main(){
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
12 return 0;
432
db4b6169a99d 1) implemented checkRuntimeErrorMessage
thomask
parents: 382
diff changeset
13 }