1
0
Fork 0
libyang/tests/yanglint/modules/modextleafref.yang
Daniel Baumann cfcebb1a7d
Adding upstream version 3.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 08:00:08 +01:00

24 lines
330 B
YANG

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";
}
}
}