X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-parser-impl%2Fsrc%2Ftest%2Fresources%2Fnegative-scenario%2Fduplicity%2Ftypedef.yang;fp=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-parser-impl%2Fsrc%2Ftest%2Fresources%2Fnegative-scenario%2Fduplicity%2Ftypedef.yang;h=b4ec5907baa8f17dd92347727a057a02dd37c4f2;hb=ba1a5528e27b0ae8a883fa7b768d803659bf9336;hp=0000000000000000000000000000000000000000;hpb=b64d31500de4d9bd81a060432c3db20feb2e7dfa;p=controller.git diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/test/resources/negative-scenario/duplicity/typedef.yang b/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/test/resources/negative-scenario/duplicity/typedef.yang new file mode 100644 index 0000000000..b4ec5907ba --- /dev/null +++ b/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/test/resources/negative-scenario/duplicity/typedef.yang @@ -0,0 +1,14 @@ +module typedef { + yang-version 1; + namespace "urn:simple.container.demo"; + prefix "t1"; + + typedef int-ext { + type int32; + } + + typedef int-ext { + type int16; + } + +}