Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8662773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T16:48:47+00:00 2026-06-12T16:48:47+00:00

Could someone explain why this gives an erasure warning? def optionStreamHead(x: Any) = x

  • 0

Could someone explain why this gives an erasure warning?

def optionStreamHead(x: Any) =
  x match {
    case head #:: _ => Some(head)
    case _ => None
  }

Gives:

warning: non variable type-argument A in type pattern scala.collection.immutable.Stream[A] is unchecked since it is eliminated by erasure
            case head #:: _ => Some(head)

I realize I can write this case if (x.isInstanceOf[Stream[_]]) ... and not get the warning, but in my case I actually want to use pattern matching and having a whole bunch of warnings I don’t understand seems bad

And here’s an equally puzzling case:

type IsStream = Stream[_]

("test": Any) match {
  case _: Stream[_] => 1 // no warning
  case _: IsStream => 2 // type erasure warning
  case _ => 3
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T16:48:48+00:00Added an answer on June 12, 2026 at 4:48 pm

    Both are bugs in 2.9 that are solved in 2.10. In 2.10 we get a new pattern matching engine (called virtpatmat for virtual pattern matcher):

    scala> def optionStreamHead(x: Any) =
      x match {
        case head #:: _ => Some(head)
        case _ => None
      }
    optionStreamHead: (x: Any)Option[Any]
    
    scala> optionStreamHead(0 #:: Stream.empty)
    res14: Option[Any] = Some(0)
    
    scala> ("test": Any) match {
         |   case _: Stream[_] => 1 // no warning
         |   case _: IsStream => 2 // type erasure warning
         |   case _ => 3
         | }
    <console>:11: warning: unreachable code
                    case _: IsStream => 2 // type erasure warning
                                        ^
    res0: Int = 3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Could someone please explain this weird phenomenon: http://jsfiddle.net/sPA2V/ For some reason, the box footer
Please could someone explain to me why this regex does not match anything, when
Could someone explain this (strange) behavior? Why is the length in the first example
int64_t maskTestNum = (1ll << 63); could someone explain why this prints as the
Could someone please explain why this is happening? var y = new int[]{1,2}; Console.WriteLine(y
Could someone explain to me what this portion of code means? repeat scroll 0
Could someone explain in layman terms what this actually does? XmlTextReader textReader = new
I know this is a pretty basic regex, could someone explain what it is
Could someone please help explain why I can't get this to work? I properly
this is prob pretty easy but if someone could explain the easiest way to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.