Swift support for IAST Diacritics

Does writing IAST(International Alphabet for Sanskrit Translation) causes mis interpretation of normalisation that same alphabet with same diacritic can be interpreted as different identifier
eg:

let viś = "..."
let viś = "//"

since unicode has more than one code point for represent ś
with regard to 2016 Normalize Unicode Identifiers by JoaoPinheiro · Pull Request #531 · swiftlang/swift-evolution · GitHub is it resolved or it on hold please guide
And also does using Diacritics posses any Security Threats
and also auto complete is not showing diacritic words

The second let declaration is caught by the compiler as an 'invalid redeclaration' maybe because identifiers in Swift are normalised according to 'NFKC', so the two distinct unicode representations amount to one and the same identifier. The error is caught in Playground (I did copy & paste from your example).

The 'invisible identifier' case from 2016 is weird because I expected the compiler to catch this too since Swift identifiers are very close to adhering to the Unicode XID_Start and XID_Continue categories and those wouldn't allow an identifier containing a Soft Hyphen (U+00AD).

// invisible identifiers
struct ­ {
    var ­­: String
}

let ­­: ­ = ­(­­: "Invisble characters should not be acceptable identifiers.")

print(­­)

But these obvious undesirables are not caught in Playground. I'm probably missing something? [correction: U+00AD is explicitly allowed as an indentifier start character in the Swift language definition. This is deviating from XID_Start.]