summaryrefslogtreecommitdiffstats
path: root/tests/yanglint/modules/modmust.yang
blob: 99971bde4b0adb8024e278dd9477455b96b73241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module modmust {
  namespace "urn:yanglint:modmust";
  prefix m;

  import modleaf {
    prefix ml;
  }

  leaf lfm {
    type string;
    must "/ml:lfl > 0";
  }
}