Add DataSchemaContextNode/SchemaInferenceStack integration
[yangtools.git] / data / yang-data-util / src / test / resources / yt1412.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4   yang-version 1.1;
5
6   container one {
7     choice two {
8       choice three {
9         leaf four {
10           type string;
11         }
12       }
13     }
14   }
15
16   augment /one {
17     list five;
18   }
19
20   augment /one/two/three/three {
21     leaf six {
22       type string;
23     }
24   }
25 }