summaryrefslogtreecommitdiffstats
path: root/tests/yanglint/modules/modextleafref.yang
blob: d45ec7189eaa0f0e6b71b0e772be83cc0c0d1498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module modextleafref {
  namespace "urn:yanglint:modextleafref";
  prefix mel;

  list ls {
    key k;
    leaf k {
      type string;
    }
    leaf lf {
      type uint8;
    }
  }
  leaf lfr {
    type leafref {
      path "../ls/k";
    }
  }
  leaf lfrderef {
    type leafref {
      path "deref(../lfr)/../lf";
    }
  }
}