summaryrefslogtreecommitdiffstats
path: root/tests/bugs/split-nested-types.slang
blob: ccf95d90627f1883c526e360f255fd9ac45b45d8 (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 C { Texture2D t; SamplerState s; };

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