summaryrefslogtreecommitdiff
path: root/libxsd-frontend/tests/schema/union/test-000.std
blob: 6f95b0c61cf0f221c8ef0522e90512b8b9a28d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
primary
{
  namespace test
  {
    union u1 http://www.w3.org/2001/XMLSchema#int http://www.w3.org/2001/XMLSchema#string 
    union u2 
    {
      enumeration <anonymous>: http://www.w3.org/2001/XMLSchema#token
      {
        enumerator one
      }
    }

    {
      enumeration <anonymous>: http://www.w3.org/2001/XMLSchema#string
      {
        enumerator two
      }
    }

    union u3 http://www.w3.org/2001/XMLSchema#int test#u1 
    {
      enumeration <anonymous>: http://www.w3.org/2001/XMLSchema#token
      {
        enumerator one
      }
    }

    {
      enumeration <anonymous>: http://www.w3.org/2001/XMLSchema#string
      {
        enumerator two
      }
    }

  }
}