7ca75a1d60604142730be7b9bb4821143912c40b
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug7440 / foo.yang
1 module foo {
2     namespace foo-ns;
3     prefix foo-prfx;
4
5     import bar {
6         prefix bar;
7         revision-date 2016-12-23;
8     }
9
10     revision 2016-12-23;
11
12     deviation "/bar:test-leaf" {
13         deviate replace {
14             type uint32 {
15                 range "5..50";
16             }
17         }
18     }
19 }