5fea1b1d282f1880916277604286f83a512a0790
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug6669 / invalid / test1 / bar.yang
1 module bar {
2     namespace "bar";
3     prefix bar;
4
5     import foo { prefix foo; revision-date 2016-09-08; }
6
7     revision 2016-09-08;
8
9     augment /foo:root {
10         container bar {
11             container bar1 {
12                 leaf m {
13                     mandatory true;
14                     type empty;
15                 }
16             }
17         }
18     }
19 }