summaryrefslogtreecommitdiffstats
path: root/tests/fuzz/corpus/lys_parse_mem/issue724.yang
blob: f4c37c4e363831c99b136d15955eec9057cfe385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module mod1 {
    namespace "urn:all";
    prefix av;
    yang-version 1.1;

    leaf l1 {
        type union-type;
    }

    leaf-list list5 {
        type string;
    }

    typedef union-type {
        type union {
            type leafref {
                path /list5;
            }
            type union-type;
        }
    }
}