660f93cc8de1d6bc661f69e727598f13cfb959c5
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / notifications-in-data-nodes / baz-invalid.yang
1 module baz-invalid {
2     namespace baz-namespace;
3     prefix baz-prefix;
4     yang-version 1.1;
5
6     revision 2016-12-08;
7
8     container my-container {
9         choice my-choice {
10             case first {
11                 leaf first-leaf {
12                     type string;
13                 }
14             }
15             case second {
16                 uses grouping-with-notification;
17             }
18         }
19     }
20
21     grouping grouping-with-notification {
22         notification notification-in-grouping {
23
24         }
25     }
26 }