summaryrefslogtreecommitdiff
path: root/tests/language-feature/inheritance/struct-inheritance-imported.slang
blob: 16816ec971f3a4ce822ee205623d3bf02d850a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//TEST_IGNORE_FILE:
// struct-inheritance-imported.slang

public struct Base
{
    public int a;
}

public struct Derived : Base
{}

public int getA(Derived d) { return d.a; }