annotate nocompile/b/bug_tocsym_142_C.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9c56e95b4ec8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
721
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
1 // $HeadURL$
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
2 // $Date$
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
3 // $Author$
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
4
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
5 // @desc@ tocsym.c:142: virtual Symbol* VarDeclaration::toSymbol(): Assertion `!needThis()' failed.
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
6 // @author@ Tiago Gasiba <tiago.gasiba@gmail.com>
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
7 // @date@ 2005-10-24
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 721
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5190
721
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
9
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 22
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
11
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
12 module dstress.nocompile.b.bug_tocsym_142_C;
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
13
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
14 class S{
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
15 int i;
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
16 }
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
17
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
18 struct C{
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
19 S s;
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
20
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
21 static int bug(){
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
22 return s.i;
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
23 }
9c56e95b4ec8 Tiago Gasiba <tiago.gasiba@gmail.com>
thomask
parents:
diff changeset
24 }