Skip to content

Commit 7208bd8

Browse files
authored
Merge pull request #14802 from ckipp01/explainReturnType
fix: correct highlight interpolation in explain message
2 parents ed9267e + b8c9d5a commit 7208bd8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

compiler/src/dotty/tools/dotc/reporting/messages.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -589,9 +589,8 @@ import transform.SymUtils._
589589
def explain =
590590
em"""|An abstract declaration must have a return type. For example:
591591
|
592-
|trait Shape {hl(
593-
| def area: Double // abstract declaration returning a ${"Double"}
594-
|)}"""
592+
|trait Shape:
593+
| ${hl("def area: Double")} // abstract declaration returning a Double"""
595594
}
596595

597596
class MissingReturnTypeWithReturnStatement(method: Symbol)(using Context)

0 commit comments

Comments
 (0)