Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / substatement-validator / bug-4310 / bug4310.yang
1 module bug4310 {
2     yang-version 1;
3     namespace "urn:opendaylight.bug4310";
4     prefix "bug";
5
6     organization "opendaylight";
7     contact "http://www.opendaylight.org/";
8
9     leaf datapath-id {
10         type union {
11             bug:simple-ext-w-arg "key:value";
12         }
13     }
14
15     extension simple-ext-w-arg {
16         argument "ext-arg";
17         description "Extension with single argument definition.";
18     }
19 }