Declaring more specific method

Here’s what I’m trying.


class MapColoringTestSuite extends FunSuite {
  override def test(testName: String, testTags: Tag*)(testFun: =>Any)(implicit pos: source.Position):Unit = {
    super.test(testName, testTags :_*){
      println(s"starting $testName")
      testFun
      println(s"finished $testName")
    }
  }
...
}

IntelliJ complains that source in source.Position cannot be resolved, and the compiler gives the following error

Error:(27, 85) not found: value source
  override def test(testName: String, testTags: Tag*)(testFun: =>Any)(implicit pos: source.Position):Unit = {