enum E { case a case b } func body(e: E) { // OK if case .a = e { print("a") } // なにこれ? if case e = .a { print("a") } }