YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / negative-scenario / testfile8.yang
1 module testfile8 {
2     yang-version 1;
3     namespace "urn:simple.test8.demo";
4     prefix "t8";
5
6     organization "opendaylight";
7     contact "http://www.opendaylight.org/";
8     description "This is types-data test description";
9
10     revision "2013-08-03" {
11         reference " WILL BE DEFINED LATER";
12     }
13
14     container interfaces {
15         grouping ifEntry {
16             container augment-holder;
17         }
18         list ifEntry {
19             key "ifIndex";
20             leaf ifIndex {
21                 type uint32;
22                 units minutes;
23             }
24         }
25     }
26
27 }