Merge "BUG-1412: fixed bug in antlr grammar."
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug1412 / bug1412.yang
1 module bug1412 {
2     yang-version 1;
3     namespace "urn:test:bug1412";
4     prefix "b1412";
5
6     revision "2014-07-25" {
7     }
8
9
10     container node {
11         ext:action hello {
12             ext:info "greeting";
13             description "say greeting";
14             ext:actionpoint entry {
15                 ext:internal;
16             }
17             output {
18                 uses params;
19             }
20         }
21     }
22
23 }