blob: c1195dcc70f230670cbb98e0e93705579ac14c2c [file] [log] [blame]
module Test {
yang-version 1;
namespace http://huawei.com;
prefix Ant;
typedef invalid-interval {
type string {
length "1..100";
}
}
leaf xyz {
type invalid-interval {
length "2..100";
}
}
}