aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-special/utf8encoded.scala
blob: 6eac24acd7df69c384ab4992f1916e8155e832c1 (plain) (blame)
1
2
3
4
5
6
7
8
//this file is saved as UTF-8
object Test {
  def main(args: Array[String]): Unit = {
    val testchar = '⇒'
    println(testchar == '\u21D2')
  }
  
}