annotate nocompile/bug_mtype_2576_B.d @ 1593:a2c2122f2f66

Remove error line information for simple tests that may legitimately have another line referenced in the error message.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:30:16 +0200
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
148
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
1 // $HeadURL$
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
2 // $Date$
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
3 // $Author$
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
4
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
5 // @author@ Buchan <kbuchan@xtra.co.nz>
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
6 // @date@ 2004-10-16
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 1383
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2114
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 338
diff changeset
8 // @uri@ nntp://digitalmars.com digitalmars.D.bugs/2114
148
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
9
338
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 148
diff changeset
10 // __DSTRESS_ELINE__ 17
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 148
diff changeset
11
148
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
12 module dstress.nocompile.bug_mtype_2576_B;
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
13
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
14 const char[] B = ['A'];
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
15
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
16 int main(){
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
17 cast(B)1;
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
18 return 0;
a2f3b4e1bfe5 cleanup of test name doubles
thomask
parents:
diff changeset
19 }