A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / negative-scenario / duplicity / augment0.yang
1 module augment0 {
2     yang-version 1;
3     namespace "urn:simple.augment0.demo";
4     prefix "a0";
5
6     container foo {
7         description "foo container";
8         container bar {
9             leaf id {
10                 type int8;
11             }
12             typedef int-ext {
13                 type int8 {
14                     range "5..10";
15                 }
16             }
17             choice choice-ext {
18                 leaf delta {
19                     type int8;
20                 }
21             }
22         }
23     }
24
25 }