summaryrefslogtreecommitdiffstats
path: root/tests/fuzz/corpus/lys_parse_mem/issue1041.yang
blob: 16c6d876253da60088b104e7503f3ce89f5f2a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module foo {
    namespace foo;
    prefix foo;
    yang-version 1.1;

    container root {
   }
    container top {
        notification top-notification {
        }
    }

    list top-list {
        key key-leaf;

        leaf key-leaf {
            type string;
        }

        notification top-list-notification {
        }
    }

    grouping grp {
        notification grp-notification {
        }
    }

    augment "/root" {
        uses grp;
        notification aug-notification {
        }
    }
}