Skip to content

Fix #9886: Disallow by-name trait parameters #10324

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 1 commit into from
Nov 16, 2020
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
5 changes: 5 additions & 0 deletions compiler/src/dotty/tools/dotc/ast/Desugar.scala
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,11 @@ object desugar {
}
else originalTparams

if mods.is(Trait) then
for vparams <- originalVparamss; vparam <- vparams do
if vparam.tpt.isInstanceOf[ByNameTypeTree] then
report.error(em"implementation restriction: traits cannot have by name parameters", vparam.srcPos)

// Annotations on class _type_ parameters are set on the derived parameters
// but not on the constructor parameters. The reverse is true for
// annotations on class _value_ parameters.
Expand Down
2 changes: 2 additions & 0 deletions tests/neg/i9886.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trait D(l: => Any): // error
def f = l