Skip to content
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

Regression in @switch pattern matches with guards #5830

Closed
scabug opened this issue May 24, 2012 · 2 comments
Closed

Regression in @switch pattern matches with guards #5830

scabug opened this issue May 24, 2012 · 2 comments
Assignees
Milestone

Comments

@scabug
Copy link

scabug commented May 24, 2012

This code succeeds in 2.9.x, but fails in 2.10.0-SNAPSHOT. The old pattern matcher would move the guard inside the branch if there were no other branches with the same value.

import scala.annotation._

object Foo extends App {
	def eof: Boolean = false

	def method(ch: Char) = (ch: @switch) match {
	    case 'a' if eof => println("a with oef")
	    case 'b' => println("b")
	    case 'c' => println("c")
	}
}

It says:

switch-pat.scala:6: error: could not emit switch for @switch annotated match
	def method(ch: Char) = (ch: @switch) match {
                                     ^
one error found
@scabug
Copy link
Author

scabug commented May 24, 2012

Imported From: https://issues.scala-lang.org/browse/SI-5830?orig=1
Reporter: @dragos
Affected Versions: 2.10.0

@scabug
Copy link
Author

scabug commented Jul 5, 2012

@adriaanm said:
scala/scala#821

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants