Do not pretty-print body class
[yangtools.git] / data / yang-data-impl / src / test / resources / bug7844 / bar.yang
1 module bar {
2     namespace bar;
3     prefix bar-mod;
4
5     import baz { prefix baz-imp; }
6
7     typedef bar-leafref {
8         type baz-imp:my-leafref;
9         description "bar-leafref";
10     }
11
12     typedef bar-base-leafref {
13         type leafref {
14             path "/baz-imp:root/baz-imp:target";
15         }
16     }
17
18     leaf my-leafref-in-bar {
19         type bar-base-leafref;
20     }
21
22     leaf my-leafref-in-bar-2 {
23         type bar-base-leafref;
24         description "bar-base-leafref-2";
25     }
26
27     leaf bar-target {
28         type string;
29     }
30 }