Skip to content

Fix #8362: Fail compilation if a compile time error can't be inlined because of a non-literal string parameter #8387

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions compiler/src/dotty/tools/dotc/typer/Inliner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -559,19 +559,19 @@ class Inliner(call: tpd.Tree, rhsToInline: tpd.Tree)(implicit ctx: Context) {

def issueError() = callValueArgss match {
case (msgArg :: Nil) :: Nil =>
msgArg.tpe match {
case ConstantType(Constant(msg: String)) =>
// Usually `error` is called from within a rewrite method. In this
// case we need to report the error at the point of the outermost enclosing inline
// call. This way, a defensively written rewrite methid can always
// report bad inputs at the point of call instead of revealing its internals.
val callToReport = if (enclosingInlineds.nonEmpty) enclosingInlineds.last else call
val ctxToReport = ctx.outersIterator.dropWhile(enclosingInlineds(_).nonEmpty).next
def issueInCtx(implicit ctx: Context) =
ctx.error(msg, callToReport.sourcePos)
issueInCtx(ctxToReport)
case _ =>
val message = msgArg.tpe match {
case ConstantType(Constant(msg: String)) => msg
case _ => s"A literal string is expected as an argument to `compiletime.error`. Got ${msgArg.show}"
}
// Usually `error` is called from within a rewrite method. In this
// case we need to report the error at the point of the outermost enclosing inline
// call. This way, a defensively written rewrite methid can always
// report bad inputs at the point of call instead of revealing its internals.
val callToReport = if (enclosingInlineds.nonEmpty) enclosingInlineds.last else call
val ctxToReport = ctx.outersIterator.dropWhile(enclosingInlineds(_).nonEmpty).next
def issueInCtx(implicit ctx: Context) =
ctx.error(message, callToReport.sourcePos)
issueInCtx(ctxToReport)
case _ =>
}

Expand Down Expand Up @@ -1316,4 +1316,3 @@ class Inliner(call: tpd.Tree, rhsToInline: tpd.Tree)(implicit ctx: Context) {
}
}.apply(Nil, tree)
}

5 changes: 5 additions & 0 deletions tests/neg/i8362.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
object Test {
inline def foo: String = scala.compiletime.error(s"")

def main(args: Array[String]): Unit = println(foo) // error
}