0de390100f286b0d508f89fea8de64810fa0a760
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / notifications-in-data-nodes / foo10.yang
1 module foo10 {
2     namespace foo10;
3     prefix foo10;
4     yang-version 1;
5
6     container root {
7     }
8
9     list top-list {
10         notification top-list-notification {
11         }
12     }
13
14     grouping grp {
15         notification grp-notification {
16         }
17     }
18
19     augment "/root" {
20         uses grp;
21         notification aug-notification {
22         }
23     }
24 }