annotate nocompile/bug_mtype_507_B.d @ 243:7c8580d800ab

updated meta data for mtype_507
author thomask
date Sun, 23 Jan 2005 10:51:04 +0000
parents 7aa29e681c0a
children 1f6cf5ccfbc9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
240
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
1 // $HeadURL$
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
2 // $Date$
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
3 // $Author$
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
4
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
243
7c8580d800ab updated meta data for mtype_507
thomask
parents: 240
diff changeset
6 // @date@ 2005-01-22
7c8580d800ab updated meta data for mtype_507
thomask
parents: 240
diff changeset
7 // @uri@ news:csvvet$2g4$1@digitaldaemon.com
7c8580d800ab updated meta data for mtype_507
thomask
parents: 240
diff changeset
8 // @url@ nntp://news.digitalmars.com/digitalmars.D.bugs/2741
240
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
9
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
10 module dstress.nocompile.bug_mtype_507_B;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
11
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
12 struct Struct{
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
13 int x;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
14 }
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
15
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
16 int main(){
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
17 int i;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
18 Struct s;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
19 if(s==i){
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
20 return -1;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
21 }
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
22 return 0;
7aa29e681c0a bulk offline update
thomask
parents:
diff changeset
23 }