init commit
This commit is contained in:
20
test/codegen/struct_within_struct.golden
Normal file
20
test/codegen/struct_within_struct.golden
Normal file
@@ -0,0 +1,20 @@
|
||||
struct Foo;
|
||||
struct Bar;
|
||||
|
||||
struct Foo
|
||||
{
|
||||
float4 color;
|
||||
}
|
||||
|
||||
struct Bar
|
||||
{
|
||||
Foo t;
|
||||
}
|
||||
|
||||
void vs_main()
|
||||
{
|
||||
Foo f;
|
||||
Bar b;
|
||||
b.t = f;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user