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 8618461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:07:00+00:00 2026-06-12T06:07:00+00:00

This is probably covered by the blog entry by Jesse Eichar—still I can’t figure

  • 0

This is probably covered by the blog entry by Jesse Eichar—still I can’t figure out how to correct the following without resorting to lazy vals so that the NPE is fixed:

Given

trait FooLike { def foo: String }
case class Foo(foo: String) extends FooLike

trait Sys {
  type D <: FooLike
  def bar: D
}

trait Confluent extends Sys {
  type D = Foo
}

trait Mixin extends Sys {
  val global = bar.foo
}

First attempt:

class System1 extends Mixin with Confluent {
  val bar = Foo("npe")
}

new System1  // boom!!

Second attempt, changing mixin order

class System2 extends Confluent with Mixin {
  val bar = Foo("npe")
}

new System2  // boom!!

Now I use both bar and global very heavily, and therefore I don’t want to pay a lazy-val tax just because Scala (2.9.2) doesn’t get the initialisation right. What to do?

  • 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-12T06:07:01+00:00Added an answer on June 12, 2026 at 6:07 am

    You can use an early initializer:

    class System1 extends {
      val bar = Foo("npe")
    } with Mixin with Confluent {
      // ...
    }
    
    scala> new System1
    res3: System1 = System1@1d0bfedd
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been working all day and I somehow can't get this probably easy task
This probably is a very very basic question but i can't seem to find
This is probably well covered ground, but I'm ignorant on the subject so I'll
This probably has a really obvious answer, but I can't seem to find it.
This probably won't make sense without an example. I'm using python-disqus in my Django
this probably is a basic question, but can I do something like this: Class
This probably has a very simple answer, but I'm having trouble figuring it out...
This question has probably been the most covered question in all of DotNetNuke's lifetime
This probably another silly question - but is there an MKMapViewDelegate method that can
This probably has a simple solution to it but i can't wrap my head

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.