Compiler segfault with struct containing list of structs with an inline member #2416

This commit is contained in:
Christoffer Lerno
2025-08-18 12:19:14 +02:00
parent 5e1bf75621
commit 643aa47e99
5 changed files with 18 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
import std::collections::list;
struct Module
{
List {ModuleSection} sections;
}
struct ModuleSection
{
inline int data;
}