8000 Fixes https://scala-webapps.epfl.ch/jenkins/job/scala-checkin-rangpos/404 by xeno-by · Pull Request #382 · scala/scala · GitHub
[go: up one dir, main page]

Skip to content

Fixes https://scala-webapps.epfl.ch/jenkins/job/scala-checkin-rangpos/404 #382

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

Closed
wants to merge 1 commit into from
Closed
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 lib/scala-compiler.jar.desired.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
52e6cc393c953df8c6cbe710f8d62dce6cd1f671 ?scala-compiler.jar
7df4f4faa173959f2df461aaa659bb095b335df1 ?scala-compiler.jar
2 changes: 1 addition & 1 deletion lib/scala-library.jar.desired.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
569b35836872765f0b96a6477d7c37a257cc62e7 ?scala-library.jar
5339a90a53295ef4b298c103d6d58799078d2f19 ?scala-library.jar
3 changes: 1 addition & 2 deletions src/compiler/scala/tools/nsc/typechecker/Typers.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3483,7 +3483,6 @@ trait Typers extends Modes with Adaptations with PatMatVirtualiser {
else
tree
original setType ann.tpe
original setPos tree.pos.focus
TypeTree(tpe) setOriginal original setPos tree.pos.focus
}

Expand Down Expand Up @@ -3542,7 +3541,7 @@ trait Typers extends Modes with Adaptations with PatMatVirtualiser {
ann.tpe = arg1.tpe.withAnnotation(annotInfo)
}
val atype = ann.tpe
Typed(arg1, resultingTypeTree(atype)) setPos tree.pos.focus setType atype
Typed(arg1, resultingTypeTree(atype)) setPos tree.pos setType atype
}
}

Expand Down
0