aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t7300.scala
blob: 010eacc8867c06935f79d9ef36e093c10d81a7e8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                             









                                                     
object Test extends dotty.runtime.LegacyApp {
  // single line comment in multi line comment
  /*//*/ val x = 1 */*/
  val x = 2
  println(x)

  // single line comment in nested multi line comment
  /*/*//*/ val y = 1 */*/*/
  val y = 2
  println(y)
}