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

struct Base
{
    int a;
}

struct Derived : Base
{}

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