summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/internal-visibility/that-module.slang
blob: b072c72312f4c247cac0dec1c6959a4c3a6b26ca (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
module "that-module";

__include "that-module-impl";

void internalMethod();

public void publicMethod();

public namespace Namespace
{
    static int internalVar;

    public static int publicVar;
}

enum InternalEnum
{
    A,B,C
}
public enum PublicEnum
{
    D,E,F
}

struct InternalStruct { int x; }