Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug7037 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     import bar { prefix bar; }
6
7     extension foo-ext {
8         argument arg;
9     }
10
11     bar:bar-ext "first" {
12         container bar-ext-con {
13         }
14     }
15
16     container root {
17         bar:bar-ext "bar" {
18             container bar-ext-con-2 {
19             }
20             bar:bar-ext "sub-bar" {
21                 container bar-ext-con-3 {
22                 }
23             }
24             bar:bar-ext-2 {
25                 container bar-ext-2-con {
26                 }
27             }
28         }
29         foo:foo-ext "foo" {
30             container foo-ext-con;
31         }
32     }
33 }