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; }