enum E : Int { case a; case b } switch E(rawValue: 0) { case .a: print("a") case .b: print("b") case .none: print("none") }