# HG changeset patch # User thomask # Date 1144523191 0 # Node ID 1a05061a48b916e254c7c075bf03e77d8c267f0a # Parent fd579aa6ff7ece748316a3fa826dd5024a3ce49e 2006-04-09 news:bug-94-3@http.d.puremagic.com/bugzilla/ diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_A.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-94-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_A; + +class Object{ + int someVar; +} + +int main(){ + dstress.run.o.object_01_A.Object o = new dstress.run.o.object_01_A.Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +} diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_B.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-94-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_B; + +class Object{ + int someVar; +} + +int main(){ + dstress.run.o.object_01_B.Object o = new Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +} diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_C.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_C.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-94-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_C; + +class Object{ + int someVar; +} + +int main(){ + Object o = new dstress.run.o.object_01_C.Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +} diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_D.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_D.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-94-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_D; + +class Object{ + int someVar; +} + +int main(){ + Object o = new Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +} diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_E.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_E.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-91-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_E; + +class Object{ + int someVar; +} + +int main(){ + auto o = new dstress.run.o.object_01_E.Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +} diff -r fd579aa6ff7e -r 1a05061a48b9 run/o/object_01_F.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/run/o/object_01_F.d Sat Apr 08 19:06:31 2006 +0000 @@ -0,0 +1,27 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ +// @date@ 2006-04-09 +// @uri@ news:bug-91-3@http.d.puremagic.com/bugzilla/ + +module dstress.run.o.object_01_F; + +class Object{ + int someVar; +} + +int main(){ + auto o = new Object(); + + assert(o); + + o.someVar = 2; + + if(o.someVar != 2){ + assert(0); + } + + return 0; +}