summaryrefslogtreecommitdiffstats
path: root/tests/fuzz/corpus/lys_parse_mem/issue970.yang
blob: 18df0547e1a8f17a202d705948e10186fc1ea6e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module p{
	namespace "";
	prefix p;

	container ports{
		list port {
			key name;
			leaf name{	
				type string;}	
		}	
	}	
	augment "/ports/port" {
		when "0</*=0";
		leaf i {
			type int32;
		}
	}
}