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

struct A { int x; };

struct B { float y; };

struct CC { Texture2D t; SamplerState s; };

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