blob: 84236a29e532f1b7530c6380bb1637f7b9330ed3 [file] [log] [blame]
module Test {
yang-version 1;
namespace http://huawei.com;
prefix Ant;
import ietf-yang-types {
prefix "P";
}
grouping Percentage {
leaf hello{
type String;
}
}
container ospf {
list valid {
key "invalid";
leaf invalid{
type String;
}
uses Ant:FirstClass;
grouping FirstClass {
uses P:PassingClass;
}
}
grouping PassingClass {
uses Ant:Percentage;
}
}
}