Files
c3c/test/test_suite/struct/struct_recursive.c3
niedlich cf14787552 Typo fixes (#2457)
* fix typos in comments and strings
* fix typos in symbols (and some comments/strings)
* fix typos in releasenotes.md

---------

Co-authored-by: Christoffer Lerno <christoffer@aegik.com>
2025-09-04 01:07:07 +02:00

10 lines
117 B
Plaintext

struct GlobalNode
{
Ast node;
}
struct Ast
{
GlobalNode global; // #error: Recursive definition of 'GlobalNode'
}