Fix action lookups
[netconf.git] / netconf / sal-netconf-connector / src / test / resources / schemas / conflicting-actions.yang
1 module conflicting-actions {
2   yang-version 1.1;
3   namespace "urn:example:conflict";
4   prefix "conflict";
5
6   container foo {
7      action xyzzy {
8        input {
9          leaf foo {
10            type string;
11          }
12        }
13      }
14    }
15
16   list bar {
17      key "bar-id";
18      leaf bar-id {
19        type string;
20      }
21      action xyzzy {
22        input {
23          leaf bar {
24            type int8;
25          }
26        }
27      }
28   }
29
30   choice conflict-choice {
31      container choice-cont {
32        action choice-action;
33      }
34   }
35 }