Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / bug-4501 / yang / foo.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4     yang-version 1;
5
6     list hop {
7         leaf address {
8             type string;
9         }
10
11         leaf lrs-bits {
12             type bits {
13                 bit lookup {
14                     description
15                                         "Lookup bit.";
16                 }
17                 bit rloc-probe {
18                     description
19                                         "RLOC-probe bit.";
20                 }
21                 bit strict {
22                     description
23                                         "Strict bit.";
24                 }
25             }
26             description
27                         "Flag bits per hop.";
28         }
29     }
30 }