blob: 4f292b83b9856aa36c5ee6f5a94560262519c409 [file] [log] [blame]
module Test {
yang-version 1;
namespace http://huawei.com;
prefix Ant;
typedef Percentage {
type int32;
}
container ospf {
list valid {
key "invalid-interval";
leaf invalid-interval {
type Ant:FirstClass;
}
typedef FirstClass {
type PassingClass;
}
}
typedef PassingClass {
type Ant:Percentage;
}
}
}