Do not pretty-print body class
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug7844 / baz.yang
1 module baz {
2     namespace baz;
3     prefix baz-mod;
4
5     typedef my-leafref {
6         type leafref {
7             path "/baz-mod:root/baz-mod:target";
8         }
9         description "baz-leafref";
10     }
11
12     container root {
13         leaf target {
14             type string;
15         }
16     }
17 }