Do not pretty-print body class
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug6392 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     revision 2017-03-10;
6
7     container root-cont {
8         list my-outer-unkeyed-list {
9             leaf leaf-a {
10                 type string;
11             }
12
13             list my-inner-unkeyed-list {
14                 leaf leaf-b {
15                     type string;
16                 }
17             }
18         }
19     }
20 }