I believe that the primary reasoning for allowing the implicit conversion between int and dchar is so that code like thisdchar c = 'a' + 7;
That's a '+' though, not a '~'. I think it shouldn't be allowed with ~ since it's misleading.Newbies would probably expect "abc" ~ 10 to yield "abc10" rather than the odd "abc\n".