mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
22 lines
246 B
D
22 lines
246 B
D
/* REQUIRED_ARGS: -betterC -inline
|
|
PERMUTE_ARGS:
|
|
*/
|
|
|
|
struct InvBoneBindInfo
|
|
{
|
|
}
|
|
|
|
|
|
struct Test(Value)
|
|
{
|
|
void test()
|
|
{
|
|
auto t = Value.init;
|
|
}
|
|
}
|
|
|
|
extern(C) void main()
|
|
{
|
|
Test!(InvBoneBindInfo[32]) test;
|
|
test.test();
|
|
}
|