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

ClassTag.unapply wrong for primitive types #6318

Closed
scabug opened this issue Sep 6, 2012 · 3 comments
Closed

ClassTag.unapply wrong for primitive types #6318

scabug opened this issue Sep 6, 2012 · 3 comments
Assignees
Labels
Milestone

Comments

@scabug
Copy link

scabug commented Sep 6, 2012

tmp$ scala
Welcome to Scala version 2.10.0-M7 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_06).
Type in expressions to have them evaluated.
Type :help for more information.

scala> import scala.reflect._
import scala.reflect._

scala> val intTag = implicitly[ClassTag[Int]]
intTag: scala.reflect.ClassTag[Int] = ClassTag[int]

scala> val n = 1
n: Int = 1

scala> intTag.runtimeClass.isAssignableFrom(n.getClass)
res0: Boolean = true

scala> intTag unapply n
res1: Option[Int] = None

@scabug
Copy link
Author

scabug commented Sep 6, 2012

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

@scabug
Copy link
Author

scabug commented Sep 6, 2012

@xeno-by said:
scala/scala#1265

@scabug
Copy link
Author

scabug commented Sep 7, 2012

@xeno-by said:
scala/scala@6a74033

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

No branches or pull requests

2 participants