aboutsummaryrefslogblamecommitdiff
path: root/compiler/test/dotty/tools/dotc/reporting/TestMessageLaziness.scala
blob: bf727d51a701295c5a5d0ace302d46a91fd92375 (plain) (tree)
1
2
3
4
5
6
7
8
9








                         






                                                                  
                                                                  
 
                                                                        















                                                
package dotty.tools
package dotc
package reporting

import org.junit.Assert._
import org.junit.Test

import core.Contexts._

import diagnostic.{ Message, MessageContainer, ExtendMessage }

class TestMessageLaziness extends DottyTest {
  ctx = ctx.fresh.setReporter(new NonchalantReporter)

  class NonchalantReporter(implicit ctx: Context) extends Reporter
  with UniqueMessagePositions with HideNonSensicalMessages {
    def doReport(m: MessageContainer)(implicit ctx: Context) = ???

    override def report(m: MessageContainer)(implicit ctx: Context) = ()
  }

  case class LazyError() extends Message(1000) {
    throw new Error("Didn't stay lazy.")

    val kind = "Test"
    val msg = "Please don't blow up"
    val explanation = ""
  }

  @Test def assureLazy =
    ctx.error(LazyError())

  @Test def assureLazyExtendMessage =
    ctx.strictWarning(LazyError())
}