blob: 357a2f83d3ab6fe269e12166dc10037f6b2d4859 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import // This is incorrect Scala but can still be highlighted correctly
import a.{x => y} // Test comment
import a.{x => } // This is incorrect Scala but can still be highlighted correctly
import a.{x => `test-name`}
import a.given
import a.{given a}
import a.{x, y}
import a._
import a.x
import a.x.y.z
import java.io.{File, IOException, FileNotFoundException}
import java.io.File
import scala.math.{given Ordering[Int]}
import scala.math.{given Ordering[?]}
import a.givenSomething
import givenPackage
|