• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • utils
  • yangutils
  • src
  • test
  • resources
  • EnumWithDuplicateName.yang
  • Gaurav Agrawal's avatar
    Yang Listener for BITS Data Type · 0cfdeede ...
    0cfdeede
    Change-Id: I81e7f7e8de38ce20addd63548414a486b7e2ffb8
    Gaurav Agrawal authored 2016-02-25 21:39:36 +0000
EnumWithDuplicateName.yang 235 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    leaf speed {
        type enumeration {
          enum 10m;
          enum 100m;
          enum 10m {
	     value 11;
          }
        }
    }
}