Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #811: test.d

File test.d, 313 bytes (added by jhouse, 10 months ago)

File demonstrating problem

Line 
1 version=crash;
2 //version=work1;
3 //version=work2;
4 //version=work3;
5
6 interface I{
7 }
8
9 class C : public I{
10 }
11
12 unittest{
13     version(crash) scope I def = new C;
14     version(work1) scope C def = new C;
15     version(work2)       I def = new C;
16     version(work3)       C def = new C;
17 }
18
19 int main(){
20     return 0;
21 }