Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-export / src / test / resources / bugs / bug2444 / yang / notification.yang
1 module notification {
2     namespace "notification";
3     prefix n;
4     yang-version 1.1;
5
6     notification n1 {
7         status deprecated;
8         container c {
9             config true;
10             status current;
11         }
12     }
13
14     container r {
15         notification n2 {
16         }
17     }
18
19     list l {
20         key "id";
21         leaf id {
22             type int16;
23         }
24         notification n3 {
25         }
26     }
27
28     augment "/r" {
29         uses grp;
30         notification n4 {
31         }
32     }
33
34     grouping grp {
35         notification n5 {
36         }
37     }
38 }