YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / if-feature-resolution-test / shared-schema-repository / foobar.yang
1 module foobar {
2     namespace "foobar-namespace";
3     prefix "foobar-prefix";
4
5     container test-container-a {
6         if-feature test-feature-1;
7
8         leaf test-leaf-a {
9             type string;
10         }
11     }
12
13     container test-container-b {
14         if-feature foobar-feature;
15
16         leaf test-leaf-b {
17             type string;
18         }
19     }
20
21     container test-container-c {
22         leaf test-leaf-c {
23             type string;
24         }
25     }
26 }