The compiler emits a warning if I use `|` in a bac...
# compiler
l
The compiler emits a warning if I use
|
in a backticked function name, claming it can cause problems on Windows. I can supprss it with
@Suppress("DANGEROUS_CHARACTERS")
, but what's the danger exactly? I plan to run it only on the JVM.
c