blob: ce930d8a856e853a240a5f5b08c29a495d617ace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">
<!-- Test xpath for nested anonymous types. -->
<element name="a">
<complexType>
<sequence>
<element name="b">
<complexType>
<sequence>
<element name="c" type="string"/>
</sequence>
</complexType>
</element>
</sequence>
</complexType>
</element>
</schema>
|