Skip to content

Add regression test #12099

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 2 commits into from
Apr 15, 2021
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
2 changes: 1 addition & 1 deletion compiler/src/dotty/tools/dotc/ast/Desugar.scala
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ object desugar {
tree.withMods(mods)
else if tree.name.startsWith("$") && !tree.isBackquoted then
report.error(
"""Quoted pattern variable names starting with $ are not suported anymore.
"""Quoted pattern variable names starting with $ are not supported anymore.
|Use lower cases type pattern name instead.
|""".stripMargin,
tree.srcPos)
Expand Down
10 changes: 10 additions & 0 deletions tests/pos/i9531.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
trait Scope:
type Expr[+T]

def exprQuote[T](x: T)(using s: Scope, dummy: Null = null): s.Expr[T] = ???
def exprQuote[T <: Singleton](x: T)(using s: Scope): s.Expr[T] = ???

def test(using s: Scope): Unit =
val t1: s.Expr[1] = exprQuote(1)
val t2 = exprQuote(1)
val t3: s.Expr[1] = t2