BUG-1097: implemented check for null or empty list in builder classes.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / bug1097 / foo.yang
1 module foo {
2   namespace "urn:test:foo";
3   prefix foo;
4
5   revision 2014-07-17 {
6   }
7
8
9     container link {
10         list node {
11             leaf id {
12                 type string;
13             }
14         }
15     }
16
17 }