mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Compiler segfault with struct containing list of structs with an inline member #2416
This commit is contained in:
10
test/unit/regression/struct_inner.c3
Normal file
10
test/unit/regression/struct_inner.c3
Normal file
@@ -0,0 +1,10 @@
|
||||
import std::collections::list;
|
||||
|
||||
struct Module
|
||||
{
|
||||
List {ModuleSection} sections;
|
||||
}
|
||||
struct ModuleSection
|
||||
{
|
||||
inline int data;
|
||||
}
|
||||
Reference in New Issue
Block a user