blob: b3399eaeb17156035337bc813f024e0ef45e7a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//TEST_IGNORE_FILE:
// struct-inheritance-imported.slang
#pragma warning(disable:30816)
public struct Base
{
public int a;
}
public struct Derived : Base
{}
public int getA(Derived d) { return d.a; }
|