summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/runnable/interface3.d
blob: f748f72b08db769460f2822e645c56641f5d2782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// PERMUTE_ARGS:

extern(C) int printf(const char*, ...);

interface IWriter
{
        IWriter put (I1 x);
}

interface I1
{
        void write (IWriter writer);
}

interface I2 : I1 {}

interface I3 : I2 {}

class Newline : I3
{
        static int OKset;

        void write (IWriter writer)
        {
                printf ("OK\n");
                OKset += 1;
        }
}



class Writer : IWriter
{
        IWriter put (I1 x)
        {
                x.write (this);
                return this;
        }
}

class FlushWriter : Writer
{
        override IWriter put (I1 x)
        {
               // have superclass handle the I1
                super.put (x);

                // flush output when we see a newline
                if (cast(Newline) x)
                   {
                   }

                return this;
        }
}



void test (IWriter w)
{
        //w.put (new Newline);

        I3 NL = new Newline;
        w.put (NL);
}


int main()
{
        test (new FlushWriter);
        assert(Newline.OKset == 1);
        return 0;
}