blob: 8f0dff480677118131d6c606697c38734810dfb7 [file] [log] [blame]
sonugupta-huawei159f8842017-08-20 19:55:26 +05301module module-b {
2
3 namespace "urn:ietf:params:xml:ns:aug:module:b";
4
5 prefix mod-a;
6
7 import module-c {
8 prefix c;
9 }
10
11 identity BASE;
12
13 identity DER1 {
14 base c:BASE;
15 }
16
17 identity DER2 {
18 base c:BASE;
19 }
20
21 typedef base {
22 type identityref {
23 base BASE;
24 }
25 }
26
27 typedef der1 {
28 type identityref {
29 base c:BASE;
30 }
31 }
32}