← Back to index
|
Original Bugzilla link
Bug 2174 – dstress test case typo and something not correct
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
tools
Product
D
Version
D1 (retired)
Platform
x86
OS
Windows
Creation time
2008-06-25T23:30:00Z
Last change time
2015-06-09T01:36:17Z
Assigned to
thomas-dloop
Creator
davidl
Comments
Comment #0
by davidl — 2008-06-25T23:30:40Z
for a runnable test case, run/t/this_13_C.d misses interface declaration Index: run/i/inline_16_C.d =================================================================== --- run/i/inline_16_C.d (revision 1832) +++ run/i/inline_16_C.d (working copy) @@ -32,7 +32,7 @@ } int main(){ - Fooi2 f = new Foo2(); + Foo2 f = new Foo2(); if(status != 0){ assert(0); Index: run/t/this_13_C.d =================================================================== --- run/t/this_13_C.d (revision 1832) +++ run/t/this_13_C.d (working copy) @@ -9,6 +9,10 @@ module dstress.run.t.this_13_C; +interface I { + void get( char[] s ); +} + class C{ void init(){ I i = new class() { Index: complex/linking/b.d =================================================================== --- complex/linking/b.d (revision 1832) +++ complex/linking/b.d (working copy) @@ -7,9 +7,9 @@ // @uri@ news:
[email protected]
// @url@ nntp://news.digitalmars.com/digitalmars.D.bugs -module dstress.complex.linking.b; +module /*dstress.*/complex.linking.b; -import dstress.complex.linking.a; +import /*dstress.*/complex.linking.a; void functB() { StructA!(int)* x; Index: complex/linking/c.d =================================================================== --- complex/linking/c.d (revision 1832) +++ complex/linking/c.d (working copy) @@ -7,10 +7,10 @@ // @uri@ news:
[email protected]
// @url@ nntp://news.digitalmars.com/digitalmars.D.bugs -module dstress.complex.linking.c; +module /*dstress.*/complex.linking.c; -import dstress.complex.linking.a; -import dstress.complex.linking.b; +import /*dstress.*/complex.linking.a; +import /*dstress.*/complex.linking.b; void functC() { StructA!(int)* x;
Comment #1
by kamm-removethis — 2008-09-09T10:04:13Z
Fixed in dsource-dstress 1598.