Update test.

This commit is contained in:
Christoffer Lerno
2025-09-25 10:30:43 +02:00
committed by Christoffer Lerno
parent eaeafb7299
commit e68bd0c57f

View File

@@ -2,10 +2,10 @@ module foo { Type };
import std::collections::list; import std::collections::list;
struct Foo { struct Foo { // #error: Recursive definition of 'Foo'
Type foo; Type foo;
Allocator allocator; Allocator allocator;
List { Foo } children; // #error: Recursive definition of 'Foo' List { Foo } children;
} }
module test; module test;