mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Don't create cycles in tree structure. This will lead to an infinite loop or call stack overflow later. Closes: https://gitlab.gnome.org/GNOME/libxml2/-/issues/711
16 lines
308 B
XML
16 lines
308 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
|
<start>
|
|
<element>
|
|
<choice>
|
|
<name>c</name>
|
|
<choice>
|
|
<name>a</name>
|
|
<name>b</name>
|
|
</choice>
|
|
</choice>
|
|
<empty/>
|
|
</element>
|
|
</start>
|
|
</grammar>
|