summaryrefslogtreecommitdiffstats
path: root/tests/bugs/split-nested-types.slang
blob: b9bfb9e6267755e02c121427577f861af78948f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//TEST_IGNORE_FILE:

public struct A { public int x; };

public struct B { public float y; };

public struct CC { public Texture2D t; public SamplerState s; };

public struct M
{
    public A a;
    public B b;
    public CC c;
};