At least in C#, you can define variables with keyword names like this:
var @struct = "abc"
I think in Kotlin you can do the same, and even include spaces with backticks like val abstract class = "abc"
I'm not sure if other languages allow that, regardless it should be rarely used.