annotate nocompile/this_05.d @ 282:81fdb31f5960

this -> var in classes and structs Stewart Gordon <smjg_1998@yahoo.com> 2005-02-08 news:cua2nm$11pg$1@digitaldaemon.com nntp://news.digitalmars.com/digitalmars.D.bugs/2888
author thomask
date Sat, 12 Feb 2005 10:25:41 +0000
parents
children f87ba6507260
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
282
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
1 // $HeadURL$
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
2 // $Date$
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
3 // $Author$
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
4
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
5 // @author@ Stewart Gordon <smjg_1998@yahoo.com>
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
6 // @date@ 2005-02-08
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
7 // @uri@ news:cua2nm$11pg$1@digitaldaemon.com
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
8 // @url@ nntp://news.digitalmars.com/digitalmars.D.bugs/2888
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
9
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
10 module dstress.nocompile.this_05;
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
11
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
12 struct MyStruct{
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
13 int i;
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
14 int* p = &i;
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
15 }
81fdb31f5960 this -> var in classes and structs
thomask
parents:
diff changeset
16