summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/runnable/A16.d
blob: e89e71493fe26edbd09506c2878b90c1171ea35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
EXTRA_SOURCES: imports/A16a.d
RUN_OUTPUT:
---
class AA16
class B16
---
*/

import core.stdc.stdio;

class AA16
{
  protected:
    this()
    {
        printf("class AA16\n");
    }
}