annotate norun/throw_05.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +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
432
db4b6169a99d 1) implemented checkRuntimeErrorMessage
thomask
parents: 382
diff changeset
5 module dstress.norun.throw_05;
382
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
6
432
db4b6169a99d 1) implemented checkRuntimeErrorMessage
thomask
parents: 382
diff changeset
7 static this(){
382
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 }